Skip to content

Commit ef1f484

Browse files
fix version 25.2 to 26.0
The `make release-create-rc` command expects there to be a .2 version after a .1 version, but that is not always the case (for 25.1 -> 26.0 for e.g.).
1 parent d856260 commit ef1f484

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
VENV?=.venv
33
# Source virtualenv to execute command (darker, sphinx, twine, etc...)
44
IN_VENV=if [ -f "$(VENV)/bin/activate" ]; then . "$(VENV)/bin/activate"; fi;
5-
RELEASE_CURR:=25.2
5+
RELEASE_CURR:=26.0
66
RELEASE_UPSTREAM:=upstream
77
CONFIG_MANAGE=$(IN_VENV) python lib/galaxy/config/config_manage.py
88
PROJECT_URL?=https://github.com/galaxyproject/galaxy

lib/galaxy/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
VERSION_MAJOR = "25.2"
1+
VERSION_MAJOR = "26.0"
22
VERSION_MINOR = "dev0"
33
VERSION = VERSION_MAJOR + (f".{VERSION_MINOR}" if VERSION_MINOR else "")

0 commit comments

Comments
 (0)