Set version to 2026.01.1

This commit is contained in:
Michael Ossmann 2026-01-04 21:11:34 -05:00
parent ba7cc54893
commit 3793493e02
3 changed files with 3 additions and 3 deletions

View file

@ -1219,7 +1219,7 @@ def get_version():
version = subprocess.run(["git", "log", "-n" "1", "--format=%h"],
capture_output=True, encoding="utf-8", timeout=TIMEOUT)
if version.returncode != 0:
return "2023.01.1+"
return "2026.01.1"
elif version.returncode == 0:
dirty = subprocess.run(["git", "status", "-s", "--untracked-files=no"],
capture_output=True, encoding="utf-8", timeout=TIMEOUT)

View file

@ -64,7 +64,7 @@ if (NOT DEFINED VERSION)
OUTPUT_STRIP_TRAILING_WHITESPACE
)
if (GIT_VERSION_FOUND)
set(VERSION "2024.02.1+")
set(VERSION "2026.01.1")
else (GIT_VERSION_FOUND)
set(VERSION "git-${GIT_VERSION}")
endif (GIT_VERSION_FOUND)

View file

@ -8,7 +8,7 @@ if(NOT DEFINED RELEASE)
OUTPUT_STRIP_TRAILING_WHITESPACE
)
if (GIT_EXIT_VALUE)
set(RELEASE "2024.02.1+")
set(RELEASE "2026.01.1")
else (GIT_EXIT_VALUE)
execute_process(
COMMAND git status -s --untracked-files=no