diff --git a/docs/release_notes.rst b/docs/release_notes.rst index 578db7c14..56ba4c1bb 100644 --- a/docs/release_notes.rst +++ b/docs/release_notes.rst @@ -1,6 +1,23 @@ Release Notes ============= +v2.0.3 +------ + +:date: 2016-11-18 + +This is a backwards compatible, minor release. + +Fixes in this release: + +* Allow longs as members of maps + lists in python 2 (#200) +* Allow raw map attributes in subclassed map attributes (#199) + +Contributors to this release: + +* @jmphilli + + v2.0.2 ------ diff --git a/pynamodb/__init__.py b/pynamodb/__init__.py index a935382cb..23a22248f 100644 --- a/pynamodb/__init__.py +++ b/pynamodb/__init__.py @@ -7,4 +7,4 @@ """ __author__ = 'Jharrod LaFon' __license__ = 'MIT' -__version__ = '2.0.2' +__version__ = '2.0.3'