From 04a8011697b2609e4895589ded2ce7f04d511cfc Mon Sep 17 00:00:00 2001 From: John Davis Date: Mon, 4 Mar 2024 13:14:33 -0500 Subject: [PATCH 1/2] Update version to 24.0.rc1 --- lib/galaxy/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/galaxy/version.py b/lib/galaxy/version.py index fe862df52308..a035aaef8721 100644 --- a/lib/galaxy/version.py +++ b/lib/galaxy/version.py @@ -1,3 +1,3 @@ VERSION_MAJOR = "24.0" -VERSION_MINOR = "dev0" +VERSION_MINOR = "rc1" VERSION = VERSION_MAJOR + (f".{VERSION_MINOR}" if VERSION_MINOR else "") From 4c4dac9221e10de4fefba1a7a44ef3247bacb1c9 Mon Sep 17 00:00:00 2001 From: John Davis Date: Mon, 4 Mar 2024 13:14:33 -0500 Subject: [PATCH 2/2] Update version to 24.1.dev0 --- Makefile | 2 +- lib/galaxy/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index eced4f09382a..15e90641d751 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:=24.0 +RELEASE_CURR:=24.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 fe862df52308..09f340ffa5b5 100644 --- a/lib/galaxy/version.py +++ b/lib/galaxy/version.py @@ -1,3 +1,3 @@ -VERSION_MAJOR = "24.0" +VERSION_MAJOR = "24.1" VERSION_MINOR = "dev0" VERSION = VERSION_MAJOR + (f".{VERSION_MINOR}" if VERSION_MINOR else "")