From b08034f14da264d5e5ba9ab0fbe4bf1d45b7434e Mon Sep 17 00:00:00 2001 From: Nick Hall Date: Tue, 1 Aug 2023 13:51:15 +0100 Subject: [PATCH] Release Gramps 5.2.0-beta1 --- docs/conf.py | 4 ++-- gramps/version.py | 4 ++-- setup.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 0d189a1e2d7..f821c586f20 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -65,9 +65,9 @@ # built documents. # # The short X.Y version. -version = "5.1.0" +version = "5.2" # The full version, including alpha/beta/rc tags. -release = "5.1.0" +release = "5.2.0-beta1" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/gramps/version.py b/gramps/version.py index 677f735c0ba..8e08bc3567d 100644 --- a/gramps/version.py +++ b/gramps/version.py @@ -18,8 +18,8 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -DEV_VERSION = True +DEV_VERSION = False VERSION_TUPLE = (5, 2, 0) -VERSION_QUALIFIER = "" +VERSION_QUALIFIER = "-beta1" VERSION = ".".join(map(str, VERSION_TUPLE)) + VERSION_QUALIFIER major_version = "%s.%s" % (VERSION_TUPLE[0], VERSION_TUPLE[1]) diff --git a/setup.py b/setup.py index 12643c100c8..ed6e88bb324 100755 --- a/setup.py +++ b/setup.py @@ -459,7 +459,7 @@ def run(self): data_files=data_files, scripts=["scripts/gramps"], classifiers=[ - "Development Status :: 1 - Planning", + "Development Status :: 4 - Beta", "Environment :: Console", "Environment :: MacOS X", "Environment :: Plugins",