From 5bcd8bbabd71a5550cf6815473691d033991284d Mon Sep 17 00:00:00 2001 From: Jacek Tomaszewski Date: Sun, 1 May 2016 22:40:05 +0200 Subject: [PATCH] Make release 0.9.2. --- README.rst | 3 +++ setup.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 69f2d84..4279994 100644 --- a/README.rst +++ b/README.rst @@ -477,6 +477,9 @@ some of the settings provided earlier in this document:: Changelog ========= +**0.9.2** (01/05/2016) + - Fixed bug when saving non-required settings + - Fixed problem with ImageValue in Python 3 (thanks rolexCoder) **0.9.1** (10/01/2016) - Fixed `Sites` app being optional (thanks rolexCoder) **0.9.0** (25/12/2015) diff --git a/setup.py b/setup.py index 473656a..971fdbe 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, 1) +version_tuple = (0, 9, 2) if version_tuple[2] is not None: if type(version_tuple[2]) == int: version = "%d.%d.%s" % version_tuple