diff --git a/AUTHORS.rst b/AUTHORS.rst index 05b405e..5f0991b 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -14,10 +14,12 @@ Contributors * Avraham Shukron * Chris Targett +* Daniel Schiavini * Dima Kuznetsov * Hugo van Kemenade * Jannis Leidel * Johannes Garimort * Omer Anson * Pavel Lipchak +* Roberto Fernandez Diaz * Vorren diff --git a/HISTORY.rst b/HISTORY.rst index 9a91222..440f808 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,13 @@ History ------- +2.5.0 (2021-07-26) +++++++++++++++++++ + +* Improvied error messages for field validation errors. +* Allowed to validate non model list items. +* Added DictField. + 2.4.1 (2021-02-19) ++++++++++++++++++ diff --git a/jsonmodels/__init__.py b/jsonmodels/__init__.py index 286003f..c4f71c3 100644 --- a/jsonmodels/__init__.py +++ b/jsonmodels/__init__.py @@ -1,3 +1,3 @@ __author__ = 'Szczepan Cieślik' __email__ = 'szczepan.cieslik@gmail.com' -__version__ = '2.4.1' +__version__ = '2.5.0'