From 210634bebeb620fbf2900b6194bcba60921a813c Mon Sep 17 00:00:00 2001 From: dkuhlman <none@none> Date: Mon, 10 Feb 2014 12:20:03 -0800 Subject: [PATCH] Update to version number --- README | 6 +++++- generateDS.py | 2 +- generateDS.txt | 2 +- gui/generateds_gui.py | 2 +- libgenerateDS/gui/generateds_gui.py | 2 +- librarytemplate_howto.txt | 2 +- process_includes.py | 2 +- setup.py | 2 +- tutorial/generateds_tutorial.txt | 2 +- 9 files changed, 13 insertions(+), 9 deletions(-) diff --git a/README b/README index 64d7d72..2890b49 100644 --- a/README +++ b/README @@ -141,7 +141,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Change history -------------- -Version 2.12b (02/06/2014) +Version 2.12b (02/10/2014) - Fix to the aliasing capability. You should now be able to alias one element to another, and by doing so, only generate the targeted alias. See notes on generateds_config.py in the @@ -150,6 +150,10 @@ Version 2.12b (02/06/2014) - Additional fixes for the "one module per XSD file". Also, creation of a unit test for this capability. Thanks again to George David for all his work on this. +- Fixes to process_includes.py -- Some uses of namespace prefix xs: + were hard-coded, whereas some XML schemas use xsd: instead of xs:. +- Various fixes to unit tests so that all unit tests pass when using + the cloned Mercurial repository. Version 2.12a (10/29/2013) - A name conflict issue caused by naming anonymous types. An diff --git a/generateDS.py b/generateDS.py index b691ae8..b3356e6 100755 --- a/generateDS.py +++ b/generateDS.py @@ -177,7 +177,7 @@ logging.disable(logging.INFO) # Do not modify the following VERSION comments. # Used by updateversion.py. ##VERSION## -VERSION = '2.12a' +VERSION = '2.12b' ##VERSION## GenerateProperties = 0 diff --git a/generateDS.txt b/generateDS.txt index 127b264..fd36e6d 100644 --- a/generateDS.txt +++ b/generateDS.txt @@ -12,7 +12,7 @@ generateDS -- Generate Data Structures from XML Schema .. version -:revision: 2.12a +:revision: 2.12b .. version diff --git a/gui/generateds_gui.py b/gui/generateds_gui.py index ed5c2a9..da34cc6 100755 --- a/gui/generateds_gui.py +++ b/gui/generateds_gui.py @@ -31,7 +31,7 @@ from libgenerateDS.gui import generateds_gui_session # Do not modify the following VERSION comments. # Used by updateversion.py. ##VERSION## -VERSION = '2.12a' +VERSION = '2.12b' ##VERSION## diff --git a/libgenerateDS/gui/generateds_gui.py b/libgenerateDS/gui/generateds_gui.py index ed5c2a9..da34cc6 100755 --- a/libgenerateDS/gui/generateds_gui.py +++ b/libgenerateDS/gui/generateds_gui.py @@ -31,7 +31,7 @@ from libgenerateDS.gui import generateds_gui_session # Do not modify the following VERSION comments. # Used by updateversion.py. ##VERSION## -VERSION = '2.12a' +VERSION = '2.12b' ##VERSION## diff --git a/librarytemplate_howto.txt b/librarytemplate_howto.txt index e6b73b7..121f1b1 100644 --- a/librarytemplate_howto.txt +++ b/librarytemplate_howto.txt @@ -8,7 +8,7 @@ How to package a generateDS.py generated library .. version -:revision: 2.12a +:revision: 2.12b .. version diff --git a/process_includes.py b/process_includes.py index 05c386f..4786776 100755 --- a/process_includes.py +++ b/process_includes.py @@ -30,7 +30,7 @@ from lxml import etree # Do not modify the following VERSION comments. # Used by updateversion.py. ##VERSION## -VERSION = '2.12a' +VERSION = '2.12b' ##VERSION## CatalogDict = {} diff --git a/setup.py b/setup.py index b897a3a..e914720 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup(name="generateDS", # Do not modify the following VERSION comments. # Used by updateversion.py. ##VERSION## - version="2.12a", + version="2.12b", ##VERSION## author="Dave Kuhlman", author_email="dkuhlman@rexx.com", diff --git a/tutorial/generateds_tutorial.txt b/tutorial/generateds_tutorial.txt index b9e9f1b..7ec816e 100644 --- a/tutorial/generateds_tutorial.txt +++ b/tutorial/generateds_tutorial.txt @@ -11,7 +11,7 @@ generateDS -- Introduction and Tutorial .. version -:revision: 2.12a +:revision: 2.12b .. version -- GitLab