From 29c562e0a26f5bcecfba268036084e471ed00551 Mon Sep 17 00:00:00 2001 From: Samuel Colvin Date: Sat, 28 Apr 2018 19:11:37 +0100 Subject: [PATCH] uprev --- HISTORY.rst | 9 +++++---- pydantic/version.py | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 540af6d705b..586e22ac13f 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,12 +3,13 @@ History ------- -v0.8.1 (2018-XX-XX) +v0.9.0 (2018-04-28) ................... * tweak email-validator import error message #145 -* fix parse error of parse_date() and parse_datetime() when input is 0 #144 -* add ``Config.anystr_strip_whitespace`` and ``strip_whitespace`` kwarg to ``constr``, by default values is `False` #163 -* add ``ConstrainedFloat``, ``confloat``, ``PositiveFloat`` and ``NegativeFloat`` types #166 +* fix parse error of ``parse_date()`` and ``parse_datetime()`` when input is 0 #144 thanks @YannLuo +* add ``Config.anystr_strip_whitespace`` and ``strip_whitespace`` kwarg to ``constr``, + by default values is ``False`` #163 thanks @Gr1N +* add ``ConstrainedFloat``, ``confloat``, ``PositiveFloat`` and ``NegativeFloat`` types #166 thanks @Gr1N v0.8.0 (2018-03-25) ................... diff --git a/pydantic/version.py b/pydantic/version.py index b4a817fda06..7335ce3b00b 100644 --- a/pydantic/version.py +++ b/pydantic/version.py @@ -2,4 +2,4 @@ __all__ = ['VERSION'] -VERSION = StrictVersion('0.8.1') +VERSION = StrictVersion('0.9.0')