[pypy-commit] pypy py3.5: increment working version to 5.8, restart pypy3-head

mattip pypy.commits at gmail.com
Tue Mar 14 17:24:42 EDT 2017


Author: Matti Picus <matti.picus at gmail.com>
Branch: py3.5
Changeset: r90687:92b0d855f603
Date: 2017-03-14 23:16 +0200
http://bitbucket.org/pypy/pypy/changeset/92b0d855f603/

Log:	increment working version to 5.8, restart pypy3-head

diff --git a/pypy/doc/whatsnew-pypy3-5.7.0.rst b/pypy/doc/whatsnew-pypy3-5.7.0.rst
new file mode 100644
--- /dev/null
+++ b/pypy/doc/whatsnew-pypy3-5.7.0.rst
@@ -0,0 +1,14 @@
+=========================
+What's new in PyPy3 5.7.0
+=========================
+
+.. this is the revision after release-pypy3.3-5.5.x was branched
+.. startrev: c5fb5db3c8ee
+
+.. branch: py3.5-time
+
+.. branch: py3.5-ssl
+
+.. branch: PEP393
+
+Implement some level of compatibility with PEP 393 APIs.
diff --git a/pypy/doc/whatsnew-pypy3-head.rst b/pypy/doc/whatsnew-pypy3-head.rst
deleted file mode 100644
--- a/pypy/doc/whatsnew-pypy3-head.rst
+++ /dev/null
@@ -1,14 +0,0 @@
-========================
-What's new in PyPy3 5.5+
-========================
-
-.. this is the revision after release-pypy3.3-5.5.x was branched
-.. startrev: c5fb5db3c8ee
-
-.. branch: py3.5-time
-
-.. branch: py3.5-ssl
-
-.. branch: PEP393
-
-Implement some level of compatibility with PEP 393 APIs.
\ No newline at end of file
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		"3.5.2"
 
 /* PyPy version as a string */
-#define PYPY_VERSION "5.6.0-alpha0"
-#define PYPY_VERSION_NUM  0x05060000
+#define PYPY_VERSION "5.8.0-alpha0"
+#define PYPY_VERSION_NUM  0x05080000
 
 /* 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, 6, 0, "alpha", 0)    #XXX # sync patchlevel.h
+PYPY_VERSION               = (5, 8, 0, "alpha", 0)    #XXX # sync patchlevel.h
 
 
 import pypy


More information about the pypy-commit mailing list