From a2113ea87262a302918df8a262fb073f81776bbe Mon Sep 17 00:00:00 2001 From: Matti Picus Date: Sun, 21 Apr 2024 11:07:02 +1000 Subject: update version to 7.3.16 --- pypy/doc/conf.py | 2 +- pypy/module/cpyext/include/patchlevel.h | 4 ++-- pypy/module/sys/version.py | 2 +- rpython/doc/conf.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pypy/doc/conf.py b/pypy/doc/conf.py index fef5fa1d18..13121bdaee 100644 --- a/pypy/doc/conf.py +++ b/pypy/doc/conf.py @@ -93,7 +93,7 @@ issues_github_path = "pypy/pypy" # The short X.Y version. version = '7.3' # The full version, including alpha/beta/rc tags. -release = '7.3.15' +release = '7.3.16' # 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 index 01f17d231b..2d3ea0e53b 100644 --- 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.15" -#define PYPY_VERSION_NUM 0x07030f00 +#define PYPY_VERSION "7.3.16" +#define PYPY_VERSION_NUM 0x07031000 /* 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 index cab8ae848b..99f02986e9 100644 --- a/pypy/module/sys/version.py +++ b/pypy/module/sys/version.py @@ -15,7 +15,7 @@ CPYTHON_API_VERSION = 1013 #XXX # sync with include/modsupport.h # make sure to keep PYPY_VERSION in sync with: # module/cpyext/include/patchlevel.h # doc/conf.py -PYPY_VERSION = (7, 3, 15, "final", 0) +PYPY_VERSION = (7, 3, 16, "final", 0) import pypy pypydir = pypy.pypydir diff --git a/rpython/doc/conf.py b/rpython/doc/conf.py index 22f4fb4a81..fdf5064334 100644 --- a/rpython/doc/conf.py +++ b/rpython/doc/conf.py @@ -82,7 +82,7 @@ copyright = u'2024, The PyPy Project' # The short X.Y version. version = '7.3' # The full version, including alpha/beta/rc tags. -release = '7.3.13' +release = '7.3.16' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. -- cgit v1.2.3-65-gdbad