From 795efe5c1cd18d6167dae0de4cc0367709328bb3 Mon Sep 17 00:00:00 2001 From: Samuel Colvin Date: Thu, 6 Jun 2019 17:33:15 +0100 Subject: [PATCH] uprev --- HISTORY.rst | 4 ++-- pydantic/version.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index f3b1a18..4f497c2 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,14 +3,14 @@ History ------- -v0.28 (unreleased) +v0.28 (2019-06-06) .................. * fix support for JSON Schema generation when using models with circular references in Python 3.7, #572 by @tiangolo * support ``__post_init_post_parse__`` on dataclasses, #567 by @sevaho * allow dumping dataclasses to JSON, #575 by @samuelcolvin and @DanielOberg * ORM mode, #562 by @samuelcolvin * fix ``pydantic.compiled`` on ipython, #573 by @dmontagu and @samuelcolvin -* add `StrictBool` type, #579 by @cazgp +* add ``StrictBool`` type, #579 by @cazgp v0.27 (2019-05-30) .................. diff --git a/pydantic/version.py b/pydantic/version.py index 5c5e2ac..4863088 100644 --- a/pydantic/version.py +++ b/pydantic/version.py @@ -2,4 +2,4 @@ from distutils.version import StrictVersion __all__ = ['VERSION'] -VERSION = StrictVersion('0.27') +VERSION = StrictVersion('0.28')