From 3e51852b3f26d26f293a647c646809a9b0eb13fa Mon Sep 17 00:00:00 2001 From: Maxim Kulkin Date: Tue, 23 Aug 2016 16:35:28 -0700 Subject: [PATCH] Bump version to 0.3 --- CHANGELOG.rst | 11 ++++++++++- docs/conf.py | 4 ++-- lollipop/__init__.py | 2 +- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e802a77..59c252e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,8 +1,17 @@ Changelog --------- +0.3 (2016-08-23) +++++++++++++++++ + +* Bugfixes and documentation improvements. +* Added Unique and Each list validators. +* Added support for calculated attribute/method names in AttributeField and MethodField. +* Added support for updating objects in-place. +* Converted ConstantField to Constant type modifier. + 0.2 (2016-08-11) -++++++++++++++++++ +++++++++++++++++ * Added object schema inheritance: objects can inherit fields from other objects. * Added support for customizing error messages in Fields. diff --git a/docs/conf.py b/docs/conf.py index 033a395..34143bf 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -66,9 +66,9 @@ # built documents. # # The short X.Y version. -version = u'0.2' +version = u'0.3' # The full version, including alpha/beta/rc tags. -release = u'0.2' +release = u'0.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 c0e95b4..af4e698 100644 --- a/lollipop/__init__.py +++ b/lollipop/__init__.py @@ -1,2 +1,2 @@ -__version__ = '0.2' +__version__ = '0.3' __author__ = 'Maxim Kulkin'