diff --git a/README.rst b/README.rst index 4279994..00ba0e6 100644 --- a/README.rst +++ b/README.rst @@ -477,6 +477,8 @@ some of the settings provided earlier in this document:: Changelog ========= +**0.9.3** (02/06/2016) + - Fixed (hopefully for good) problem with ImageValue in Python 3 (thanks rolexCoder) **0.9.2** (01/05/2016) - Fixed bug when saving non-required settings - Fixed problem with ImageValue in Python 3 (thanks rolexCoder) diff --git a/setup.py b/setup.py index 971fdbe..b88510f 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup # Dynamically calculate the version based on dbsettings.VERSION -version_tuple = (0, 9, 2) +version_tuple = (0, 9, 3) if version_tuple[2] is not None: if type(version_tuple[2]) == int: version = "%d.%d.%s" % version_tuple