diff options
-rw-r--r-- | NEWS | 18 | ||||
-rw-r--r-- | src/pyexiv2/__init__.py | 2 | ||||
-rw-r--r-- | win32-installer.nsi | 2 |
3 files changed, 20 insertions, 2 deletions
@@ -1,3 +1,21 @@ +pyexiv2 0.3.2 "Travelling" - 2011-10-24 +--------------------------------------- + +Dependencies: + +- Python ≥ 2.6 +- libexiv2 ≥ 0.19 +- boost.python ≥ 1.38 + +Bugs fixed: + +- 880659: Regression: pyexiv2 0.3.1 doesn’t work with Python 2.6 + +Contributors: + +- Olivier Tilloy + + pyexiv2 0.3.1 "Challenges" - 2011-10-23 --------------------------------------- diff --git a/src/pyexiv2/__init__.py b/src/pyexiv2/__init__.py index bc8f0d7..3772226 100644 --- a/src/pyexiv2/__init__.py +++ b/src/pyexiv2/__init__.py @@ -75,7 +75,7 @@ def _make_version(version_info): #: A tuple containing the three components of the version number: major, minor, micro. -version_info = (0, 3, 1) +version_info = (0, 3, 2) #: The version of the module as a string (major.minor.micro). __version__ = _make_version(version_info) diff --git a/win32-installer.nsi b/win32-installer.nsi index 1304368..8b6a1a4 100644 --- a/win32-installer.nsi +++ b/win32-installer.nsi @@ -19,7 +19,7 @@ !include nsDialogs.nsh !include LogicLib.nsh -!define PYEXIV2_VERSION "0.3.1" +!define PYEXIV2_VERSION "0.3.2" Name "pyexiv2 ${PYEXIV2_VERSION}" OutFile "pyexiv2-${PYEXIV2_VERSION}-setup.exe" |