From f7c50ac54610b7965d41f28d0ee5ee5e24dea0ee Mon Sep 17 00:00:00 2001 From: Maxim Kulkin Date: Wed, 10 May 2017 16:33:31 -0700 Subject: [PATCH] Bump version to 1.1.3 --- CHANGELOG.rst | 6 ++++++ docs/conf.py | 6 +++--- lollipop/__init__.py | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 19700aa..2df8dba 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,12 @@ Changelog --------- +1.1.3 (2017-05-10) +++++++++++++++++++ + +* Fix exports for Date, Time and DateTime types +* Update Object type default constructor to return object-like value + 1.1.2 (2017-03-28) ++++++++++++++++++ diff --git a/docs/conf.py b/docs/conf.py index 20957bc..bd51bea 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -58,7 +58,7 @@ # General information about the project. project = u'Lollipop' -copyright = u'2016, Maxim Kulkin' +copyright = u'2016-2017, Maxim Kulkin' author = u'Maxim Kulkin' # The version info for the project you're documenting, acts as replacement for @@ -66,9 +66,9 @@ # built documents. # # The short X.Y version. -version = u'1.1.2' +version = u'1.1.3' # The full version, including alpha/beta/rc tags. -release = u'1.1.2' +release = u'1.1.3' # 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 e60d54a..c6a2062 100644 --- a/lollipop/__init__.py +++ b/lollipop/__init__.py @@ -1,2 +1,2 @@ -__version__ = '1.1.2' +__version__ = '1.1.3' __author__ = 'Maxim Kulkin'