diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c409236..3356868 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,13 @@ Changelog --------- +1.1 (2017-02-07) +++++++++++++++++ + +* Improved repr() for type objects to allow figuring out schema by just printint it +* Updated Dict type to allow transforming/validating dictionary keys +* Fixed/updated custom type documentation + 1.0.4 (2017-02-02) ++++++++++++++++++ diff --git a/docs/conf.py b/docs/conf.py index 4ba8f2c..9ac9bd2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -66,9 +66,9 @@ # built documents. # # The short X.Y version. -version = u'1.0.4' +version = u'1.1' # The full version, including alpha/beta/rc tags. -release = u'1.0.4' +release = u'1.1' # 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 3c914a2..80e3ee4 100644 --- a/lollipop/__init__.py +++ b/lollipop/__init__.py @@ -1,2 +1,2 @@ -__version__ = '1.0.4' +__version__ = '1.1' __author__ = 'Maxim Kulkin'