Update versions

develop 2.2.30
Mike Hiretsky 12 years ago
parent 42857b2f7e
commit 06ff714984

@ -79,16 +79,16 @@ class _terms(_error, _shareTermsFunction):
Split version. Version, addition letter, list suffixes with version,
revision.
Examples:
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")
2.2.30
("2.2.30","",[],"")
2.2.30-r1
("2.2.30","",[],"r1")
2.2.30a-r1
("2.2.30","a",[],"r1")
2.2.30a_rc1-r1
("2.2.30","a",[("rc","1")],"r1")
2.2.30a_rc1_p20111212-r1
("2.2.30","a",[("rc1","1"),("p","20111212")],"r1")
"""
# get revision from version
strWorkVersion, spl, rVersion = strVersion.rpartition("-")

@ -14,7 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
__version__ = "2.2.29"
__version__ = "2.2.30"
__app__ = "calculate-lib"
import sys, os, stat, re

@ -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.29"
__version__ = "2.2.30"
__app__ = "calculate-lib"
class cl_build_scripts(build_scripts):

Loading…
Cancel
Save