summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaphaël Barrois <raphael.barrois@polytechnique.org>2013-03-22 13:13:22 +0100
committerRaphaël Barrois <raphael.barrois@polytechnique.org>2013-03-22 13:13:22 +0100
commitd6ef541df617506d03d6c79c46cb908a835b5f47 (patch)
treedae86785ad73cad7fe36810b847f4815b2083741
parent3d1245b051f58bc342ca323f3a2e8a06297f7624 (diff)
downloadsemantic-version-2.2.0.tar.gz
Bump version to 2.2.0.v2.2.0
-rw-r--r--doc/changelog.rst18
-rw-r--r--src/semantic_version/__init__.py2
2 files changed, 10 insertions, 10 deletions
diff --git a/doc/changelog.rst b/doc/changelog.rst
index c3b562e..cf31167 100644
--- a/doc/changelog.rst
+++ b/doc/changelog.rst
@@ -1,8 +1,8 @@
ChangeLog
=========
-2.2.0 (current)
----------------
+2.2.0 (2013-03-22)
+------------------
*Bugfix:*
@@ -18,7 +18,7 @@ ChangeLog
string against the SemVer rules.
* Full Python3 support
-2.1.2 (22/05/2012)
+2.1.2 (2012-05-22)
------------------
*Bugfix:*
@@ -26,14 +26,14 @@ ChangeLog
* Properly validate :class:`~semantic_version.django_fields.VersionField` and
:class:`~semantic_version.django_fields.SpecField`.
-2.1.1 (22/05/2012)
+2.1.1 (2012-05-22)
------------------
*New:*
* Add introspection rules for south
-2.1.0 (22/05/2012)
+2.1.0 (2012-05-22)
------------------
*New:*
@@ -43,7 +43,7 @@ ChangeLog
:class:`~semantic_version.Version` from a list)
* Update :func:`semantic_version.Version.__repr__`
-2.0.0 (22/05/2012)
+2.0.0 (2012-05-22)
------------------
*Backwards incompatible changes:*
@@ -53,7 +53,7 @@ ChangeLog
* Merge Spec and SpecList into :class:`~semantic_version.Spec`.
* Remove :class:`~semantic_version.django_fields.SpecListField`
-1.2.0 (18/05/2012)
+1.2.0 (2012-05-18)
------------------
*New:*
@@ -64,7 +64,7 @@ ChangeLog
>>> SpecList('>=0.1.1', '!=0.1.3') == SpecList('>=0.1.1,!=0.1.3')
True
-1.1.0 (18/05/2012)
+1.1.0 (2012-05-18)
------------------
*New:*
@@ -74,7 +74,7 @@ ChangeLog
* :class:`~semantic_version.SpecList` class combining many :class:`~semantic_version.Spec`
* Add :class:`~semantic_version.django_fields.SpecListField` to store a :class:`~semantic_version.SpecList`.
-1.0.0 (17/05/2012)
+1.0.0 (2012-05-17)
------------------
First public release.
diff --git a/src/semantic_version/__init__.py b/src/semantic_version/__init__.py
index 86ba9c5..5db23c3 100644
--- a/src/semantic_version/__init__.py
+++ b/src/semantic_version/__init__.py
@@ -4,7 +4,7 @@
__author__ = "Raphaël Barrois <raphael.barrois+semver@polytechnique.org>"
-__version__ = '2.1.2'
+__version__ = '2.2.0'
from .base import compare, match, Spec, SpecItem, Version