Author: fijal Branch: release-pypy3.5-v5.9.x Changeset: r93477:cb3d0a043647 Date: 2017-12-18 19:23 +0200 http://bitbucket.org/pypy/pypy/changeset/cb3d0a043647/
Log: bump the versions diff --git a/pypy/doc/conf.py b/pypy/doc/conf.py --- a/pypy/doc/conf.py +++ b/pypy/doc/conf.py @@ -66,9 +66,9 @@ # built documents. # # The short X.Y version. -version = '5.8' +version = '5.10' # The full version, including alpha/beta/rc tags. -release = '5.8.0' +release = '5.10.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. 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 "3.5.3" /* PyPy version as a string */ -#define PYPY_VERSION "5.10.0-alpha0" +#define PYPY_VERSION "5.10.0" #define PYPY_VERSION_NUM 0x050A0000 /* Defined to mean a PyPy where cpyext holds more regular references 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, 10, 0, "alpha", 0) #XXX # sync patchlevel.h +PYPY_VERSION = (5, 10, 0, "final", 0) #XXX # sync patchlevel.h import pypy _______________________________________________ pypy-commit mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-commit
