diff options
author | Olivier Tilloy <olivier@tilloy.net> | 2010-04-26 08:25:57 +0200 |
---|---|---|
committer | Olivier Tilloy <olivier@tilloy.net> | 2010-04-26 08:25:57 +0200 |
commit | 013cfb7e46931b2f575bce4b75d13392e00ff4c2 (patch) | |
tree | 233543aa4460bc5eaba26e6a6cf25c526657ee84 | |
parent | ed257a000d191f3f4008241ec7aa53ee53240075 (diff) | |
download | pyexiv2-013cfb7e46931b2f575bce4b75d13392e00ff4c2.tar.gz |
Bumped version number to 0.2.1.
-rw-r--r-- | src/pyexiv2/__init__.py | 2 | ||||
-rw-r--r-- | win32-installer.nsi | 2 |
2 files changed, 2 insertions, 2 deletions
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" |