From 9e206bc40699349f737ba6516e4c3f0349f78579 Mon Sep 17 00:00:00 2001 From: Seth Elliott Date: Thu, 13 Apr 2017 15:03:52 -0500 Subject: [PATCH] Releasing 1.3.0 --- CHANGELOG.txt | 16 ++++++++++------ conformity/__init__.py | 2 +- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 31bd38f..fb3b532 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -2,6 +2,11 @@ Changelog ========== +1.3.0 (2017-04-13) +------------------ +- Add validation and description funcionality to fields for introspection +- Now compatible with Python 3 + 1.2.0 (2017-02-06) ------------------ - errors() now returns Error instances instead of error message strings @@ -11,14 +16,13 @@ Changelog - Float inherits methods from Integer - @validate_call / @validate_method decorators preserve meta by using funtools.wraps - 1.1.0 (2016-10-25) ------------------ - new types: Temporal, Tuple, ObjectInstance, SchemalessDictionary - renamed 'collections' to 'structures' to avoid name clash - 1.0.0 (2016-10-04) - ------------------ - - Initial release - - validation marker - - @validate_method decorator +1.0.0 (2016-10-04) +------------------ +- Initial release +- validation marker +- @validate_method decorator diff --git a/conformity/__init__.py b/conformity/__init__.py index c68196d..67bc602 100644 --- a/conformity/__init__.py +++ b/conformity/__init__.py @@ -1 +1 @@ -__version__ = "1.2.0" +__version__ = "1.3.0"