[pypy-commit] pypy default: start 7.3.0 release cycle: move whatsnew, add release note, change version

mattip pypy.commits at gmail.com
Wed Nov 27 02:01:42 EST 2019


Author: Matti Picus <matti.picus at gmail.com>
Branch: 
Changeset: r98156:dbbbae99135f
Date: 2019-11-26 08:25 -0800
http://bitbucket.org/pypy/pypy/changeset/dbbbae99135f/

Log:	start 7.3.0 release cycle: move whatsnew, add release note, change
	version

diff --git a/pypy/doc/conf.py b/pypy/doc/conf.py
--- a/pypy/doc/conf.py
+++ b/pypy/doc/conf.py
@@ -73,7 +73,7 @@
 # The short X.Y version.
 version = '7.3'
 # The full version, including alpha/beta/rc tags.
-release = '7.3.0'
+release = '7.3.1'
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.
diff --git a/pypy/doc/index-of-release-notes.rst b/pypy/doc/index-of-release-notes.rst
--- a/pypy/doc/index-of-release-notes.rst
+++ b/pypy/doc/index-of-release-notes.rst
@@ -6,6 +6,7 @@
 
 .. toctree::
 
+   release-v7.3.0.rst
    release-v7.2.0.rst
    release-v7.1.1.rst
    release-v7.1.0.rst
diff --git a/pypy/doc/index-of-whatsnew.rst b/pypy/doc/index-of-whatsnew.rst
--- a/pypy/doc/index-of-whatsnew.rst
+++ b/pypy/doc/index-of-whatsnew.rst
@@ -7,6 +7,7 @@
 .. toctree::
 
    whatsnew-head.rst
+   whatsnew-pypy2-7.3.0.rst
    whatsnew-pypy2-7.2.0.rst
    whatsnew-pypy2-7.1.0.rst
    whatsnew-pypy2-7.0.0.rst
@@ -43,6 +44,7 @@
 
 .. toctree::
     whatsnew-pypy3-head.rst
+    whatsnew-pypy3-7.3.0.rst
     whatsnew-pypy3-7.2.0.rst
     whatsnew-pypy3-7.1.0.rst
 
diff --git a/pypy/doc/whatsnew-head.rst b/pypy/doc/whatsnew-pypy2-7.3.0.rst
rename from pypy/doc/whatsnew-head.rst
rename to pypy/doc/whatsnew-pypy2-7.3.0.rst
diff --git a/pypy/doc/whatsnew-pypy3-head.rst b/pypy/doc/whatsnew-pypy3-7.3.0.rst
rename from pypy/doc/whatsnew-pypy3-head.rst
rename to pypy/doc/whatsnew-pypy3-7.3.0.rst
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
@@ -32,8 +32,8 @@
  *     module/sys/version.py
  *     doc/conf.py
  */
-#define PYPY_VERSION "7.3.0-alpha0"
-#define PYPY_VERSION_NUM  0x07030000
+#define PYPY_VERSION "7.3.1-alpha0"
+#define PYPY_VERSION_NUM  0x07030100
 /* Defined to mean a PyPy where cpyext holds more regular references
    to PyObjects, e.g. staying alive as long as the internal PyPy object
    stays alive. */
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
@@ -13,7 +13,7 @@
 # make sure to keep PYPY_VERSION in sync with:
 #    module/cpyext/include/patchlevel.h
 #    doc/conf.py
-PYPY_VERSION               = (7, 3, 0, "alpha", 0)
+PYPY_VERSION               = (7, 3, 1, "alpha", 0)
 
 
 import pypy


More information about the pypy-commit mailing list