diff --git a/HISTORY.rst b/HISTORY.rst index 51f17c1..8f47a3d 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,14 @@ History ------- +2.1 (2015-11-02) +++++++++++++++++ + +* Added lazy loading of types. +* Added schema generation for circular models. +* Improved readability of validation error. +* Fixed structure generation for list field. + 2.0.1 (2014-11-15) ++++++++++++++++++ diff --git a/history/1446502220344385-053b8c8 b/history/1446502220344385-053b8c8 deleted file mode 100644 index c77a00b..0000000 --- a/history/1446502220344385-053b8c8 +++ /dev/null @@ -1 +0,0 @@ -Added lazy loading of types. diff --git a/history/1446502242966755-885bdb6 b/history/1446502242966755-885bdb6 deleted file mode 100644 index 3c9fe2c..0000000 --- a/history/1446502242966755-885bdb6 +++ /dev/null @@ -1 +0,0 @@ -Added schema generation for circular models. diff --git a/history/34f9ecf b/history/34f9ecf deleted file mode 100644 index a50143f..0000000 --- a/history/34f9ecf +++ /dev/null @@ -1 +0,0 @@ -Improved readability of validation error. diff --git a/history/9eae9a7 b/history/9eae9a7 deleted file mode 100644 index 7a7dc4c..0000000 --- a/history/9eae9a7 +++ /dev/null @@ -1 +0,0 @@ -Fixed structure generation for list field. diff --git a/jsonmodels/__init__.py b/jsonmodels/__init__.py index 70ab98f..0453e78 100644 --- a/jsonmodels/__init__.py +++ b/jsonmodels/__init__.py @@ -2,4 +2,4 @@ __author__ = 'Szczepan Cieślik' __email__ = 'szczepan.cieslik@gmail.com' -__version__ = '2.0.1' +__version__ = '2.1'