aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS36
-rw-r--r--src/pyexiv2/__init__.py2
-rw-r--r--win32-installer.nsi2
3 files changed, 38 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 1921503..2bfb246 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,35 @@
+pyexiv2 0.2.2 "Holiday" - 2010-05-27
+------------------------------------
+
+Dependencies:
+
+- Python ≥ 2.5
+- libexiv2 ≥ 0.19
+- boost.python ≥ 1.38
+
+Changes:
+
+- Fixed two memory leaks
+- Optimized the use of the underlying libexiv2, expect improved performances
+- Restored access to the image comment (was a regression from the 0.1 series)
+- Added an optional parameter to preserve timestamps when writing metadata
+- Improved API documentation
+
+Bugs fixed:
+
+- 581787: Metadata tags leak memory
+- 582194: Reading an IPTC tag leaks memory
+- 582445: Reading a tag off an image unnecessarily re-writes its value(s)
+- 582733: Tag values are written twice
+- 559931: Please restore ability to retrieve JPEG comment
+- 564770: Document pyexiv2.metadata preview method and properties
+- 461840: feature request : optionally preserve file timestamps
+
+Contributors:
+
+- Olivier Tilloy
+
+
pyexiv2 0.2.1 "Employment" - 2010-04-26
---------------------------------------
@@ -18,6 +50,10 @@ Bugs fixed:
- 549398: Building the doc requires fiddling with the PYTHONPATH
- 549399: Add a "test" target to scons to run the unit tests
+Contributors:
+
+- Olivier Tilloy
+
pyexiv2 0.2.0 "Commuting" - 2010-03-25
--------------------------------------
diff --git a/src/pyexiv2/__init__.py b/src/pyexiv2/__init__.py
index 2fbddc8..395aaff 100644
--- a/src/pyexiv2/__init__.py
+++ b/src/pyexiv2/__init__.py
@@ -74,7 +74,7 @@ def _make_version(version_info):
#: A tuple containing the three components of the version number: major, minor, micro.
-version_info = (0, 2, 1)
+version_info = (0, 2, 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 b62f9c3..6167458 100644
--- a/win32-installer.nsi
+++ b/win32-installer.nsi
@@ -19,7 +19,7 @@
!include nsDialogs.nsh
!include LogicLib.nsh
-!define PYEXIV2_VERSION "0.2.1"
+!define PYEXIV2_VERSION "0.2.2"
Name "pyexiv2 ${PYEXIV2_VERSION}"
OutFile "pyexiv2-${PYEXIV2_VERSION}-setup.exe"