Bumping version for 2.3.x development

This commit is contained in:
BJ Dierkes 2014-01-29 19:07:28 -06:00
parent 4e1a4dc66b
commit 3e4d95c4e8
5 changed files with 28 additions and 5 deletions

View File

@ -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
------------------------------------------------------------------------------

View File

@ -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/

View File

@ -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

View File

@ -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 <http://builtoncement.com/2.2/>`_.
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/

View File

@ -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')