diff --git a/README.txt b/README.txt index dd3bdde9..4c328bb0 100644 --- a/README.txt +++ b/README.txt @@ -1,8 +1,8 @@ PyXB -- Python W3C XML Schema Bindings -Version 1.2.4-DEV +Version 1.2.4 -This source release includes pre-built bundles for common XML namespaces, -assorted web service namespaces, and SAML. A bundle for over 75 namespaces +The source releases includes pre-built bundles for common XML namespaces, +assorted web service namespaces, and SAML. A bundle with over 75 namespaces related to Geographic Information Systems is also available; if you want those, read pyxb/bundles/opengis/README.txt before installing PyXB. diff --git a/doc/conf.py b/doc/conf.py index ade16b1a..245c8518 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -47,7 +47,7 @@ # The short X.Y version. version = '1.2' # The full version, including alpha/beta/rc tags. -release = '1.2.4-DEV' +release = '1.2.4' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pyxb/__init__.py b/pyxb/__init__.py index 35006ad7..dcd9d8a0 100644 --- a/pyxb/__init__.py +++ b/pyxb/__init__.py @@ -61,7 +61,7 @@ def __init__ (self, *args, **kw): if issubclass(self.__class__.mro()[-2], ( list, dict )): super(cscRoot, self).__init__(*args) -__version__ = '1.2.4-DEV' +__version__ = '1.2.4' """The version of PyXB""" __url__ = 'http://pyxb.sourceforge.net' diff --git a/setup.py b/setup.py index aa46d772..b95d98f7 100755 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ import sys # The current version of the system. Format is #.#.#[-DEV]. -version = '1.2.4-DEV' +version = '1.2.4' # Require Python 2.6 or higher or Python 3.1 or higher if (sys.version_info[:2] < (2, 6)) or ((sys.version_info[0] == 3) and sys.version_info[:2] < (3, 1)):