Skip to content

Commit

Permalink
Bump version to 0.2 and add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
maximkulkin committed Aug 12, 2016
1 parent 25a8f94 commit 1761c55
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 3 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
Changelog
---------

0.2 (2016-08-11)
++++++++++++++++++

* Added object schema inheritance: objects can inherit fields from other objects.
* Added support for customizing error messages in Fields.
* Changed ConstantField to validate value to be the same on load.
* Added OneOf type to express polymorphic types or type alternatives.

0.1 (2016-07-28)
++++++++++++++++

* Initial release.
3 changes: 3 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.. _changelog:

.. include:: ../CHANGELOG.rst
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@
# built documents.
#
# The short X.Y version.
version = u'0.1'
version = u'0.2'
# The full version, including alpha/beta/rc tags.
release = u'0.1'
release = u'0.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 2 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
lollipop: object serialization and validation
*********************************************

Release version |version|. (:ref:`Changelog <changelog>`)

Guide
=====

Expand Down
2 changes: 1 addition & 1 deletion lollipop/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '0.1'
__version__ = '0.2'
__author__ = 'Maxim Kulkin'

0 comments on commit 1761c55

Please sign in to comment.