From a54c1422c7b4352dadc47476b16d05657a7adb8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Barrois?= Date: Tue, 22 May 2012 17:56:44 +0200 Subject: [PATCH] Changelog and version bump. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Raphaël Barrois --- doc/changelog.rst | 8 ++++++++ src/semantic_version/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/doc/changelog.rst b/doc/changelog.rst index 8960b47..13a3336 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -1,6 +1,14 @@ ChangeLog ========= +2.1.2 (22/05/2012) +------------------ + +*Bugfix:* + + * Properly validate :class:`~semantic_version.django_fields.VersionField` and + :class:`~semantic_version.django_fields.SpecField`. + 2.1.1 (22/05/2012) ------------------ diff --git a/src/semantic_version/__init__.py b/src/semantic_version/__init__.py index 057b4fe..c69ce88 100644 --- a/src/semantic_version/__init__.py +++ b/src/semantic_version/__init__.py @@ -2,7 +2,7 @@ # Copyright (c) 2012 Raphaël Barrois -__version__ = '2.1.1' +__version__ = '2.1.2' from .base import compare, match, Spec, SpecItem, Version