From: Patrick Samson Date: Thu, 16 Aug 2012 09:04:02 +0000 (+0200) Subject: Marked as version 2.0.0 X-Git-Tag: 2.0.0 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=ced5034eb1dc5eb3ebe0334413cd3e1520865b7a;p=django-postman.git Marked as version 2.0.0 --- diff --git a/docs/conf.py b/docs/conf.py index d935545..49b1578 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -45,9 +45,9 @@ copyright = u'2010, Patrick Samson' # built documents. # # The short X.Y version. -version = '1.2' +version = '2.0' # The full version, including alpha/beta/rc tags. -release = '1.2' +release = '2.0.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/postman/__init__.py b/postman/__init__.py index 886fccf..13e72d9 100644 --- a/postman/__init__.py +++ b/postman/__init__.py @@ -1,7 +1,7 @@ """A messaging application for Django""" # following PEP 386: N.N[.N]+[{a|b|c|rc}N[.N]+][.postN][.devN] -VERSION = (1, 2, 0) +VERSION = (2, 0, 0) PREREL = () POST = 0 DEV = 0 diff --git a/postman/tests.py b/postman/tests.py index 03e9bb4..64f4fa3 100644 --- a/postman/tests.py +++ b/postman/tests.py @@ -76,7 +76,7 @@ class GenericTest(TestCase): Usual generic tests. """ def test_version(self): - self.assertEqual(sys.modules['postman'].__version__, "1.2.0") + self.assertEqual(sys.modules['postman'].__version__, "2.0.0") class BaseTest(TestCase): """