summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaphaël Barrois <raphael.barrois@polytechnique.org>2012-05-18 01:22:12 +0200
committerRaphaël Barrois <raphael.barrois@polytechnique.org>2012-05-18 01:22:12 +0200
commitae57afda5cc99616d8a6f388cffbf0ec23f59c6a (patch)
tree7b94fcb3f3071b153516df5496634133ca42f3fb
parentf35982974ac85bb4f1eb4e6cfc968f5092bc13c7 (diff)
downloadsemantic-version-ae57afda5cc99616d8a6f388cffbf0ec23f59c6a.tar.gz
Release v1.1.0v1.1.0
Signed-off-by: Raphaël Barrois <raphael.barrois@polytechnique.org>
-rw-r--r--doc/changelog.rst4
-rw-r--r--src/semantic_version/__init__.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/changelog.rst b/doc/changelog.rst
index e3e94e7..5347d28 100644
--- a/doc/changelog.rst
+++ b/doc/changelog.rst
@@ -1,7 +1,7 @@
ChangeLog
=========
-1.1.0 (current)
+1.1.0 (18/05/2012)
------------------
*New:*
@@ -11,7 +11,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 (18/05/2012)
+1.0.0 (17/05/2012)
------------------
First public release.
diff --git a/src/semantic_version/__init__.py b/src/semantic_version/__init__.py
index 66959fc..336a9c8 100644
--- a/src/semantic_version/__init__.py
+++ b/src/semantic_version/__init__.py
@@ -2,7 +2,7 @@
# Copyright (c) 2012 Raphaël Barrois
-__version__ = '1.1.0-rc'
+__version__ = '1.1.0'
from .base import compare, match, Version, Spec, SpecList