From 1be4c3fbed5b9fb451806278e7ac691104fc7cc3 Mon Sep 17 00:00:00 2001 From: Dannon Baker Date: Sun, 22 Jan 2023 21:03:28 -0500 Subject: [PATCH] Fix @next version numbers --- Makefile | 2 +- lib/galaxy/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 2f79fecc927..8821c7445e1 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ VENV?=.venv # Source virtualenv to execute command (darker, sphinx, twine, etc...) IN_VENV=if [ -f "$(VENV)/bin/activate" ]; then . "$(VENV)/bin/activate"; fi; -RELEASE_CURR:= +RELEASE_CURR:=23.1 RELEASE_UPSTREAM:=upstream CONFIG_MANAGE=$(IN_VENV) python lib/galaxy/config/config_manage.py PROJECT_URL?=https://github.com/galaxyproject/galaxy diff --git a/lib/galaxy/version.py b/lib/galaxy/version.py index 0325c387cee..3ffcc1d351b 100644 --- a/lib/galaxy/version.py +++ b/lib/galaxy/version.py @@ -1,3 +1,3 @@ -VERSION_MAJOR = "" +VERSION_MAJOR = "23.1" VERSION_MINOR = "dev0" VERSION = VERSION_MAJOR + (f".{VERSION_MINOR}" if VERSION_MINOR else "")