Skip to content

Commit 91cd40b

Browse files
committed
Bump version to v1.7.2
Document changes in history
1 parent a493f6c commit 91cd40b

File tree

4 files changed

+15
-8
lines changed

4 files changed

+15
-8
lines changed

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@
5353
# built documents.
5454
#
5555
# The short X.Y version.
56-
version = 'v1.7.1'
56+
version = 'v1.7.2'
5757
# The full version, including alpha/beta/rc tags.
58-
release = 'v1.7.1'
58+
release = 'v1.7.2'
5959

6060
# The language for content autogenerated by Sphinx. Refer to documentation
6161
# for a list of supported languages.

docs/history.rst

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,22 @@ to python 3 (keeping it compatible with python 2).
1111
In Mai 2014, Michka Popoff and the Insight Software Consortium revived pygccxml
1212
by setting up a git repositery on github, hosted along with gccxml.
1313

14-
Version 1.7.2 (unreleased)
15-
--------------------------
14+
Version 1.7.2
15+
-------------
1616

1717
1. Fix exception in is_copy_constructor when the constructor's argument was
1818
a typedef. is_copy_constructor will now return False instead of failing.
1919
See issue #27.
2020

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.
2330
Thanks to Mark Moll for the patch.
2431

2532
Version 1.7.1

pygccxml/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@
4040
# TODO:
4141
# 1. Add "explicit" property for constructors
4242

43-
__version__ = 'v1.7.1'
43+
__version__ = 'v1.7.2'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from setuptools import setup
88

99
setup(name="pygccxml",
10-
version="v1.7.1",
10+
version="v1.7.2",
1111
author="Roman Yakovenko",
1212
author_email="roman yakovenko at gmail com",
1313
maintainer="Michka Popoff and the Insight Software Consortium",

0 commit comments

Comments
 (0)