From c95e833dea1c721ff5670bfe44649244dc094b28 Mon Sep 17 00:00:00 2001 From: Mike Hiretsky Date: Wed, 20 Jun 2012 09:21:38 +0400 Subject: [PATCH] Update versions --- pym/cl_template.py | 20 ++++++++++---------- pym/update_config/cl_update_config.py | 2 +- setup.py | 2 +- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/pym/cl_template.py b/pym/cl_template.py index 5a1210f..dae7872 100644 --- a/pym/cl_template.py +++ b/pym/cl_template.py @@ -79,16 +79,16 @@ class _terms(_error, _shareTermsFunction): Split version. Version, addition letter, list suffixes with version, revision. Examples: - 2.2.28 - ("2.2.28","",[],"") - 2.2.28-r1 - ("2.2.28","",[],"r1") - 2.2.28a-r1 - ("2.2.28","a",[],"r1") - 2.2.28a_rc1-r1 - ("2.2.28","a",[("rc","1")],"r1") - 2.2.28a_rc1_p20111212-r1 - ("2.2.28","a",[("rc1","1"),("p","20111212")],"r1") + 2.2.29 + ("2.2.29","",[],"") + 2.2.29-r1 + ("2.2.29","",[],"r1") + 2.2.29a-r1 + ("2.2.29","a",[],"r1") + 2.2.29a_rc1-r1 + ("2.2.29","a",[("rc","1")],"r1") + 2.2.29a_rc1_p20111212-r1 + ("2.2.29","a",[("rc1","1"),("p","20111212")],"r1") """ # get revision from version strWorkVersion, spl, rVersion = strVersion.rpartition("-") diff --git a/pym/update_config/cl_update_config.py b/pym/update_config/cl_update_config.py index a50a9d1..ddc8d61 100644 --- a/pym/update_config/cl_update_config.py +++ b/pym/update_config/cl_update_config.py @@ -14,7 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "2.2.28" +__version__ = "2.2.29" __app__ = "calculate-lib" import sys, os, stat, re diff --git a/setup.py b/setup.py index d881286..68e8308 100755 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ from distutils.core import setup from distutils.command.build_scripts import build_scripts from distutils.command.install_scripts import install_scripts -__version__ = "2.2.28" +__version__ = "2.2.29" __app__ = "calculate-lib" class cl_build_scripts(build_scripts):