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'