From 3e4d95c4e8aab57b43daafad89771c2617857524 Mon Sep 17 00:00:00 2001 From: BJ Dierkes Date: Wed, 29 Jan 2014 19:07:28 -0600 Subject: [PATCH] Bumping version for 2.3.x development --- ChangeLog | 18 +++++++++++++++++- README.md | 5 ++++- cement/core/backend.py | 2 +- doc/source/index.rst | 6 +++++- tests/utils/version_tests.py | 2 +- 5 files changed, 28 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 4060235c..cf2ece04 100755 --- a/ChangeLog +++ b/ChangeLog @@ -11,12 +11,28 @@ All bugs/feature details can be found at: Where XXXXX is the 'Issue #' referenced below. Additionally, this change log is available online at: - http://builtoncement.com/2.2/changes/ + http://builtoncement.com/2.3/changes/ See the :ref:`upgrading` section for more information related to any incompatible changes, and how to update your application to fix them. +2.3.1 - DEVELOPMENT (will be released as 2.3.2) +------------------------------------------------------------------------------ + +This is a branch off of the 2.2.x stable code base. Maintenance releases for +2.2.x will happen under the stable/2.2.x git branch, while forward feature +development will happen here as 2.3.x under the git master branch. + +Bugs: + + * None + +Features: + + * None + + 2.2.0 - Wed Jan 29, 2014 ------------------------------------------------------------------------------ diff --git a/README.md b/README.md index 460efc01..db148e7d 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,9 @@ Cement CLI Application Framework for Python =========================================== +**NOTE: 2.3.x is the development version of Cement. Please use 2.2.x in +production.** + Cement is an advanced CLI Application Framework for Python. Its goal is to introduce a standard, and feature-full platform for both simple and complex command line applications as well as support rapid development needs without @@ -37,7 +40,7 @@ along with their application, as Cement explicitly does not include them.* More Information ---------------- - * DOCS: http://builtoncement.com/2.2/ + * DOCS: http://builtoncement.com/2.3/ * CODE: http://github.com/datafolklabs/cement/ * PYPI: http://pypi.python.org/pypi/cement/ * SITE: http://builtoncement.com/ diff --git a/cement/core/backend.py b/cement/core/backend.py index 05f86e44..2faf5bcb 100644 --- a/cement/core/backend.py +++ b/cement/core/backend.py @@ -5,7 +5,7 @@ import sys # pragma: nocover -VERSION = (2, 2, 0, 'final', 0) # pragma: nocover +VERSION = (2, 3, 1, 'alpha', 0) # pragma: nocover # global handlers dict __handlers__ = {} # pragma: nocover diff --git a/doc/source/index.rst b/doc/source/index.rst index 9dadf6e7..f25f8d2f 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -6,6 +6,10 @@ Cement CLI Application Framework for Python =========================================== +.. warning:: This documentation is for the development version of Cement + 2.3.x. For production please use, and reference the current stable version of + `Cement 2.2.x `_. + Cement is an advanced CLI Application Framework for Python. Its goal is to introduce a standard, and feature-full platform for both simple and complex command line applications as well as support rapid development needs without @@ -44,7 +48,7 @@ that have external dependencies, as Cement explicitly does not include them.* Getting More Information ------------------------ - * DOCS: http://builtoncement.com/2.2/ + * DOCS: http://builtoncement.com/2.3/ * CODE: http://github.com/datafolklabs/cement/ * PYPI: http://pypi.python.org/pypi/cement/ * SITE: http://builtoncement.com/ diff --git a/tests/utils/version_tests.py b/tests/utils/version_tests.py index 0fb923f6..77c72111 100644 --- a/tests/utils/version_tests.py +++ b/tests/utils/version_tests.py @@ -5,7 +5,7 @@ from cement.utils import version, test class VersionUtilsTestCase(test.CementCoreTestCase): def test_get_version(self): ver = version.get_version() - self.ok(ver.startswith('2.2')) + self.ok(ver.startswith('2.3')) ver = version.get_version((2, 1, 1, 'alpha', 1)) self.eq(ver, '2.1.1a1')