Author: mattip <[email protected]> Branch: Changeset: r80801:9273f790a5ed Date: 2015-11-19 08:39 +0200 http://bitbucket.org/pypy/pypy/changeset/9273f790a5ed/
Log: restart the next version diff --git a/pypy/doc/whatsnew-head.rst b/pypy/doc/whatsnew-head.rst --- a/pypy/doc/whatsnew-head.rst +++ b/pypy/doc/whatsnew-head.rst @@ -1,5 +1,5 @@ ========================= -What's new in PyPy 4.0.+ +What's new in PyPy 4.1.+ ========================= .. this is a revision shortly after release-4.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,7 +29,7 @@ #define PY_VERSION "2.7.10" /* PyPy version as a string */ -#define PYPY_VERSION "4.0.1-alpha0" +#define PYPY_VERSION "4.1.0-alpha0" /* Subversion Revision number of this file (not of the repository). * Empty since Mercurial migration. */ 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 = (4, 0, 1, "alpha", 0) #XXX # sync patchlevel.h +PYPY_VERSION = (4, 1, 0, "alpha", 0) #XXX # sync patchlevel.h import pypy _______________________________________________ pypy-commit mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-commit
