[pypy-commit] pypy release-1.9.x: bump the version number; this checkin will be cherry-picked in the release branch

antocuni noreply at buildbot.pypy.org
Sat Apr 7 15:01:49 CEST 2012


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: release-1.9.x
Changeset: r54219:82161531c3d5
Date: 2012-04-07 14:40 +0200
http://bitbucket.org/pypy/pypy/changeset/82161531c3d5/

Log:	bump the version number; this checkin will be cherry-picked in the
	release branch

diff --git a/pypy/module/cpyext/include/patchlevel.h b/pypy/module/cpyext/include/patchlevel.h
--- a/pypy/module/cpyext/include/patchlevel.h
+++ b/pypy/module/cpyext/include/patchlevel.h
@@ -29,7 +29,7 @@
 #define PY_VERSION		"2.7.2"
 
 /* PyPy version as a string */
-#define PYPY_VERSION "1.8.1"
+#define PYPY_VERSION "1.9.0"
 
 /* Subversion Revision number of this file (not of the repository).
  * Empty since Mercurial migration. */
diff --git a/pypy/module/sys/version.py b/pypy/module/sys/version.py
--- a/pypy/module/sys/version.py
+++ b/pypy/module/sys/version.py
@@ -10,7 +10,7 @@
 CPYTHON_VERSION            = (2, 7, 2, "final", 42)   #XXX # sync patchlevel.h
 CPYTHON_API_VERSION        = 1013   #XXX # sync with include/modsupport.h
 
-PYPY_VERSION               = (1, 8, 1, "dev", 0)    #XXX # sync patchlevel.h
+PYPY_VERSION               = (1, 9, 0, "final", 0)    #XXX # sync patchlevel.h
 
 if platform.name == 'msvc':
     COMPILER_INFO = 'MSC v.%d 32 bit' % (platform.version * 10 + 600)


More information about the pypy-commit mailing list