[pypy-commit] pypy default: finish restart whatsnew-head, increment version

mattip pypy.commits at gmail.com
Sun Jun 5 15:57:29 EDT 2016


Author: Matti Picus <matti.picus at gmail.com>
Branch: 
Changeset: r84948:34687aab5146
Date: 2016-06-05 22:54 +0300
http://bitbucket.org/pypy/pypy/changeset/34687aab5146/

Log:	finish restart whatsnew-head, increment version

diff --git a/pypy/doc/whatsnew-head.rst b/pypy/doc/whatsnew-head.rst
new file mode 100644
--- /dev/null
+++ b/pypy/doc/whatsnew-head.rst
@@ -0,0 +1,7 @@
+=========================
+What's new in PyPy2.7 5.3+
+=========================
+
+.. this is a revision shortly after release-pypy2.7-v5.3
+.. startrev: 873218a739f1
+
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,8 +29,8 @@
 #define PY_VERSION		"2.7.10"
 
 /* PyPy version as a string */
-#define PYPY_VERSION "5.3.0-alpha0"
-#define PYPY_VERSION_NUM  0x05030000
+#define PYPY_VERSION "5.3.1-alpha0"
+#define PYPY_VERSION_NUM  0x05030100
 
 /* Defined to mean a PyPy where cpyext holds more regular references
    to PyObjects, e.g. staying alive as long as the internal PyPy object
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 @@
 #XXX # sync CPYTHON_VERSION with patchlevel.h, package.py
 CPYTHON_API_VERSION        = 1013   #XXX # sync with include/modsupport.h
 
-PYPY_VERSION               = (5, 3, 0, "alpha", 0)    #XXX # sync patchlevel.h
+PYPY_VERSION               = (5, 3, 1, "alpha", 0)    #XXX # sync patchlevel.h
 
 
 import pypy


More information about the pypy-commit mailing list