diff --git a/CHANGES.rst b/CHANGES.rst index 96b063a..5ded928 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,15 @@ CHANGES ======= +v0.4.2-beta +----------- + +*Release date: 2017-02-15* + +- Making the code python 2.6 compatible. While supporting python 2.6 isn't a goal, + it required only removing a dict comprehension. + + v0.4.1-beta ----------- diff --git a/src/jsoncfg/__init__.py b/src/jsoncfg/__init__.py index ddc5944..032617b 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, 1) +version_info = (0, 4, 2) __version__ = '.'.join(str(n) for n in version_info) __author__ = 'István Pásztor' __license__ = 'MIT'