diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 2df8dba..c3abd02 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,12 @@ Changelog --------- +1.1.4 (2017-06-08) +++++++++++++++++++ + +* Add support for serializing sequences and mappings other than list and dict +* Change Tuple type to return tuples on load() + 1.1.3 (2017-05-10) ++++++++++++++++++ diff --git a/docs/conf.py b/docs/conf.py index bd51bea..8c168e9 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -66,9 +66,9 @@ # built documents. # # The short X.Y version. -version = u'1.1.3' +version = u'1.1.4' # The full version, including alpha/beta/rc tags. -release = u'1.1.3' +release = u'1.1.4' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/lollipop/__init__.py b/lollipop/__init__.py index c6a2062..311b729 100644 --- a/lollipop/__init__.py +++ b/lollipop/__init__.py @@ -1,2 +1,2 @@ -__version__ = '1.1.3' +__version__ = '1.1.4' __author__ = 'Maxim Kulkin'