diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a6e9e5d..0379568 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,11 @@ Changelog --------- +1.0.2 (2016-11-29) +++++++++++++++++++ + +* Improved callbacks performance by prebaking context awareness + 1.0.1 (2016-11-27) ++++++++++++++++++ diff --git a/docs/conf.py b/docs/conf.py index 6936875..7fb32d3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -66,9 +66,9 @@ # built documents. # # The short X.Y version. -version = u'1.0.1' +version = u'1.0.2' # The full version, including alpha/beta/rc tags. -release = u'1.0.1' +release = u'1.0.2' # 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 a9f021e..4a0ed8a 100644 --- a/lollipop/__init__.py +++ b/lollipop/__init__.py @@ -1,2 +1,2 @@ -__version__ = '1.0.1' +__version__ = '1.0.2' __author__ = 'Maxim Kulkin'