From f715336fa770e31958c7fc599dc2c102f303eeed Mon Sep 17 00:00:00 2001 From: Istvan Pasztor Date: Tue, 12 Apr 2016 01:19:09 +0100 Subject: [PATCH] bumping version to 0.4.1 --- CHANGES.rst | 6 +++--- src/jsoncfg/__init__.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 45f80bb..96b063a 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,10 +3,10 @@ CHANGES ======= -Recent changes --------------- +v0.4.1-beta +----------- -*Release date: future* +*Release date: 2016-04-12* - Adding this CHANGES.rst file. - Moving library sources to an ``src`` subdir and excluding the ``tests`` package from the installation. diff --git a/src/jsoncfg/__init__.py b/src/jsoncfg/__init__.py index 0289c56..ddc5944 100644 --- a/src/jsoncfg/__init__.py +++ b/src/jsoncfg/__init__.py @@ -40,7 +40,7 @@ # case increase only version_info[2]. # version_info[2]: Increase in case of bugfixes. Also use this if you added new features # without modifying the behavior of the previously existing ones. -version_info = (0, 4, 0) +version_info = (0, 4, 1) __version__ = '.'.join(str(n) for n in version_info) __author__ = 'István Pásztor' __license__ = 'MIT'