File tree Expand file tree Collapse file tree 4 files changed +15
-8
lines changed Expand file tree Collapse file tree 4 files changed +15
-8
lines changed Original file line number Diff line number Diff line change 53
53
# built documents.
54
54
#
55
55
# The short X.Y version.
56
- version = 'v1.7.1 '
56
+ version = 'v1.7.2 '
57
57
# The full version, including alpha/beta/rc tags.
58
- release = 'v1.7.1 '
58
+ release = 'v1.7.2 '
59
59
60
60
# The language for content autogenerated by Sphinx. Refer to documentation
61
61
# for a list of supported languages.
Original file line number Diff line number Diff line change @@ -11,15 +11,22 @@ to python 3 (keeping it compatible with python 2).
11
11
In Mai 2014, Michka Popoff and the Insight Software Consortium revived pygccxml
12
12
by setting up a git repositery on github, hosted along with gccxml.
13
13
14
- Version 1.7.2 (unreleased)
15
- --------------------------
14
+ Version 1.7.2
15
+ -------------
16
16
17
17
1. Fix exception in is_copy_constructor when the constructor's argument was
18
18
a typedef. is_copy_constructor will now return False instead of failing.
19
19
See issue #27.
20
20
21
- 2. SafeConfigParser is throws a deprecation warning in python 3.2 and newer.
22
- Use ConfigParser instead. Add support for cflags property in config files.
21
+ 2. Fix bug with utils.xml_generator being unset when reading cached file.
22
+ This could for example happen when reading a cached file from a second
23
+ python interpreter (e.g. in a subprocess or by calling pygccxml
24
+ multiple times from a script). See issue #27.
25
+
26
+ 3. SafeConfigParser is throwing a deprecation warning in python 3.2 and newer.
27
+ Use ConfigParser instead. Thanks to Mark Moll for the patch.
28
+
29
+ 4. Add support for cflags property in config files.
23
30
Thanks to Mark Moll for the patch.
24
31
25
32
Version 1.7.1
Original file line number Diff line number Diff line change 40
40
# TODO:
41
41
# 1. Add "explicit" property for constructors
42
42
43
- __version__ = 'v1.7.1 '
43
+ __version__ = 'v1.7.2 '
Original file line number Diff line number Diff line change 7
7
from setuptools import setup
8
8
9
9
setup (name = "pygccxml" ,
10
- version = "v1.7.1 " ,
10
+ version = "v1.7.2 " ,
11
11
author = "Roman Yakovenko" ,
12
12
author_email = "roman yakovenko at gmail com" ,
13
13
maintainer = "Michka Popoff and the Insight Software Consortium" ,
You can’t perform that action at this time.
0 commit comments