[pypy-commit] pypy release-5.x: update version to 5.0.1

mattip pypy.commits at gmail.com
Fri Mar 18 06:38:44 EDT 2016


Author: mattip <matti.picus at gmail.com>
Branch: release-5.x
Changeset: r83126:8212933130f5
Date: 2016-03-18 12:33 +0200
http://bitbucket.org/pypy/pypy/changeset/8212933130f5/

Log:	update version to 5.0.1

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.0.0"
-#define PYPY_VERSION_NUM  0x05000000
+#define PYPY_VERSION "5.0.1"
+#define PYPY_VERSION_NUM  0x05000100
 
 /* 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, 0, 0, "final", 0)    #XXX # sync patchlevel.h
+PYPY_VERSION               = (5, 0, 1, "final", 0)    #XXX # sync patchlevel.h
 
 
 import pypy


More information about the pypy-commit mailing list