Skip to content

Commit

Permalink
Release Gramps 5.2.0-beta1
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick-Hall committed Aug 1, 2023
1 parent bb0ec9d commit b08034f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions gramps/version.py
Expand Up @@ -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])
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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",
Expand Down

0 comments on commit b08034f

Please sign in to comment.