summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter A. Bigot <pabigot@users.sourceforge.net>2010-05-30 12:39:47 -0500
committerPeter A. Bigot <pabigot@users.sourceforge.net>2010-05-30 12:39:47 -0500
commiteb5ceb49c01322ec09b4b57e6a789fe700ddbd7e (patch)
treea6c4c22fd0415a3710dfe8156c62f41608d1d9be
parentbd2551ad07eaf55b0833c40e6b0ed71a345287ee (diff)
Update to 1.1.2 release
-rw-r--r--README.txt14
-rw-r--r--doc/conf.py2
-rw-r--r--pyxb/__init__.py2
-rwxr-xr-xsetup.py2
4 files changed, 10 insertions, 10 deletions
diff --git a/README.txt b/README.txt
index 5fd7cb3..1c0b667 100644
--- a/README.txt
+++ b/README.txt
@@ -1,13 +1,13 @@
PyXB -- Python W3C XML Schema Bindings
-Version 1.1.2-DEV
+Version 1.1.2
Distribution components:
- PyXB-base-1.1.2-DEV.tar.gz -- Complete release, nothing pre-built
- PyXB-doc-1.1.2-DEV.tar.gz -- Overlay with pre-built documentation
- PyXB-common-1.1.2-DEV.tar.gz -- Overlay with XHTML bindings
- PyXB-opengis-1.1.2-DEV.tar.gz -- Overlay with OpenGIS bindings
- PyXB-wsspat-1.1.2-DEV.tar.gz -- Overlay with WS-* bindings
- PyXB-full-1.1.2-DEV.tar.gz -- Complete release with all overlays
+ PyXB-base-1.1.2.tar.gz -- Complete release, nothing pre-built
+ PyXB-doc-1.1.2.tar.gz -- Overlay with pre-built documentation
+ PyXB-common-1.1.2.tar.gz -- Overlay with XHTML bindings
+ PyXB-opengis-1.1.2.tar.gz -- Overlay with OpenGIS bindings
+ PyXB-wsspat-1.1.2.tar.gz -- Overlay with WS-* bindings
+ PyXB-full-1.1.2.tar.gz -- Complete release with all overlays
Installation: python setup.py install
diff --git a/doc/conf.py b/doc/conf.py
index 9891e1e..36ecd32 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -47,7 +47,7 @@ copyright = u'2009, Peter A. Bigot'
# The short X.Y version.
version = '1.1'
# The full version, including alpha/beta/rc tags.
-release = '1.1.2-DEV'
+release = '1.1.2'
# 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 64c4073..06f0b95 100644
--- a/pyxb/__init__.py
+++ b/pyxb/__init__.py
@@ -53,7 +53,7 @@ class cscRoot (object):
if issubclass(self.__class__.mro()[-2], ( list, dict )):
super(cscRoot, self).__init__(*args)
-__version__ = '1.1.2-DEV'
+__version__ = '1.1.2'
"""The version of PyXB"""
__url__ = 'http://pyxb.sourceforge.net'
diff --git a/setup.py b/setup.py
index ca046a5..fed7e1f 100755
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# The current version of the system. Format is #.#.#[-DEV].
-version = '1.1.2-DEV'
+version = '1.1.2'
import distutils.sysconfig