[pypy-commit] pypy default: Update version numbers as indicated in doc/how-to-release.rst

amauryfa noreply at buildbot.pypy.org
Fri Jun 12 19:35:35 CEST 2015


Author: Amaury Forgeot d'Arc <amauryfa at gmail.com>
Branch: 
Changeset: r78058:a8ce50056e5c
Date: 2015-06-12 19:34 +0200
http://bitbucket.org/pypy/pypy/changeset/a8ce50056e5c/

Log:	Update version numbers as indicated in doc/how-to-release.rst

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
@@ -21,12 +21,12 @@
 /* Version parsed out into numeric values */
 #define PY_MAJOR_VERSION	2
 #define PY_MINOR_VERSION	7
-#define PY_MICRO_VERSION	9
+#define PY_MICRO_VERSION	10
 #define PY_RELEASE_LEVEL	PY_RELEASE_LEVEL_FINAL
 #define PY_RELEASE_SERIAL	0
 
 /* Version as a string */
-#define PY_VERSION		"2.7.9"
+#define PY_VERSION		"2.7.10"
 
 /* PyPy version as a string */
 #define PYPY_VERSION "2.7.0-alpha0"
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
@@ -6,7 +6,7 @@
 from pypy.interpreter import gateway
 
 #XXX # the release serial 42 is not in range(16)
-CPYTHON_VERSION            = (2, 7, 9, "final", 42)
+CPYTHON_VERSION            = (2, 7, 10, "final", 42)
 #XXX # sync CPYTHON_VERSION with patchlevel.h, package.py
 CPYTHON_API_VERSION        = 1013   #XXX # sync with include/modsupport.h
 


More information about the pypy-commit mailing list