diff options
author | Olivier Tilloy <olivier@tilloy.net> | 2011-10-24 19:43:59 +0200 |
---|---|---|
committer | Olivier Tilloy <olivier@tilloy.net> | 2011-10-24 19:43:59 +0200 |
commit | ca653b9fdd7469bfcfd4be393342963f3522f0e2 (patch) | |
tree | cbe164634324c8bed56887cf90856b906358fd03 | |
parent | f81ca4cb556555910dc153f656d92f4bda77a1f4 (diff) | |
parent | 9c114d6f1d18e1e72d154e9a27b610ae8196144d (diff) | |
download | pyexiv2-ca653b9fdd7469bfcfd4be393342963f3522f0e2.tar.gz |
Merge the 0.3.2 release.release-0.3.2
-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" |