diff --git a/pym/cl_template.py b/pym/cl_template.py index 4b4905c..0714c9a 100644 --- a/pym/cl_template.py +++ b/pym/cl_template.py @@ -76,16 +76,16 @@ class _terms(_error, _shareTermsFunction): Split version. Version, addition letter, list suffixes with version, revision. Examples: - 2.2.26 - ("2.2.26","",[],"") - 2.2.26-r1 - ("2.2.26","",[],"r1") - 2.2.26a-r1 - ("2.2.26","a",[],"r1") - 2.2.26a_rc1-r1 - ("2.2.26","a",[("rc","1")],"r1") - 2.2.26a_rc1_p20111212-r1 - ("2.2.26","a",[("rc1","1"),("p","20111212")],"r1") + 2.2.27 + ("2.2.27","",[],"") + 2.2.27-r1 + ("2.2.27","",[],"r1") + 2.2.27a-r1 + ("2.2.27","a",[],"r1") + 2.2.27a_rc1-r1 + ("2.2.27","a",[("rc","1")],"r1") + 2.2.27a_rc1_p20111212-r1 + ("2.2.27","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 908e393..9365133 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.26" +__version__ = "2.2.27" __app__ = "calculate-lib" import sys, os, stat, re diff --git a/setup.py b/setup.py index 61e9b0f..d8c881b 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.26" +__version__ = "2.2.27" __app__ = "calculate-lib" class cl_build_scripts(build_scripts):