From e2c5679b3f5982a6fc9f7f24fda953a5fa1f741f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Barrois?= Date: Tue, 29 Oct 2013 01:01:28 +0100 Subject: [PATCH] Version bump to 2.2.1 --- doc/changelog.rst | 9 +++++++++ src/semantic_version/__init__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/doc/changelog.rst b/doc/changelog.rst index cf31167..481d6a7 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -1,6 +1,15 @@ ChangeLog ========= + +2.2.1 (2013-10-29) +------------------ + +*Bugfix:* + + * `#2 `_: Properly expose + :func:`~semantic_version.validate` as a top-level module function. + 2.2.0 (2013-03-22) ------------------ diff --git a/src/semantic_version/__init__.py b/src/semantic_version/__init__.py index d4dc2af..6ced92a 100644 --- a/src/semantic_version/__init__.py +++ b/src/semantic_version/__init__.py @@ -4,7 +4,7 @@ __author__ = "Raphaƫl Barrois " -__version__ = '2.2.0' +__version__ = '2.2.1' from .base import compare, match, validate, Spec, SpecItem, Version