diff options
author | Olivier Tilloy <olivier@tilloy.net> | 2010-04-26 09:23:34 +0200 |
---|---|---|
committer | Olivier Tilloy <olivier@tilloy.net> | 2010-04-26 09:23:34 +0200 |
commit | 4399c1bcb07591fcfe44cb2780dcb729af4b39d3 (patch) | |
tree | 4b3a642694387229832ae3fab88256dee9282cd2 | |
parent | ed257a000d191f3f4008241ec7aa53ee53240075 (diff) | |
parent | 50ab7406cff2d376bb442715ce5795d83d02e222 (diff) | |
download | pyexiv2-4399c1bcb07591fcfe44cb2780dcb729af4b39d3.tar.gz |
Merge the 0.2.1 release.release-0.2.1
-rw-r--r-- | NEWS | 21 | ||||
-rw-r--r-- | src/pyexiv2/__init__.py | 2 | ||||
-rw-r--r-- | win32-installer.nsi | 2 |
3 files changed, 23 insertions, 2 deletions
@@ -1,3 +1,24 @@ +pyexiv2 0.2.1 "Employment" - 2010-04-26 +--------------------------------------- + +Dependencies: + +- Python ≥ 2.5 +- libexiv2 ≥ 0.19 +- boost.python ≥ 1.38 + +Changes: + +This is a maintenance release that fixes a critical memory leak and makes it +easier to generate the documentation and run the unit tests. + +Bugs fixed: + +- 562525: memory leak in ImageMetadata.from_buffer +- 549398: Building the doc requires fiddling with the PYTHONPATH +- 549399: Add a "test" target to scons to run the unit tests + + pyexiv2 0.2.0 "Commuting" - 2010-03-25 -------------------------------------- diff --git a/src/pyexiv2/__init__.py b/src/pyexiv2/__init__.py index 229a683..a1cc8da 100644 --- a/src/pyexiv2/__init__.py +++ b/src/pyexiv2/__init__.py @@ -73,7 +73,7 @@ def _make_version(version_info): #: A tuple containing the three components of the version number: major, minor, micro. -version_info = (0, 2, 0) +version_info = (0, 2, 1) #: 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 9a2ca0c..0ac2449 100644 --- a/win32-installer.nsi +++ b/win32-installer.nsi @@ -19,7 +19,7 @@ !include nsDialogs.nsh !include LogicLib.nsh -!define PYEXIV2_VERSION "0.2" +!define PYEXIV2_VERSION "0.2.1" Name "pyexiv2 ${PYEXIV2_VERSION}" OutFile "pyexiv2-${PYEXIV2_VERSION}-setup.exe" |