Skip to content

Commit 051f8f1

Browse files
mossmannantoinevg
authored andcommitted
Set version to 2026.01.3+
1 parent fd6fba9 commit 051f8f1

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

ci-scripts/hackrf_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1219,7 +1219,7 @@ def get_version():
12191219
version = subprocess.run(["git", "log", "-n" "1", "--format=%h"],
12201220
capture_output=True, encoding="utf-8", timeout=TIMEOUT)
12211221
if version.returncode != 0:
1222-
return "2026.01.3"
1222+
return "2026.01.3+"
12231223
elif version.returncode == 0:
12241224
dirty = subprocess.run(["git", "status", "-s", "--untracked-files=no"],
12251225
capture_output=True, encoding="utf-8", timeout=TIMEOUT)

firmware/hackrf-common.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ if (NOT DEFINED VERSION)
6464
OUTPUT_STRIP_TRAILING_WHITESPACE
6565
)
6666
if (GIT_VERSION_FOUND)
67-
set(VERSION "2026.01.3")
67+
set(VERSION "2026.01.3+")
6868
else (GIT_VERSION_FOUND)
6969
set(VERSION "git-${GIT_VERSION}")
7070
endif (GIT_VERSION_FOUND)

host/cmake/set_release.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ if(NOT DEFINED RELEASE)
88
OUTPUT_STRIP_TRAILING_WHITESPACE
99
)
1010
if (GIT_EXIT_VALUE)
11-
set(RELEASE "2026.01.3")
11+
set(RELEASE "2026.01.3+")
1212
else (GIT_EXIT_VALUE)
1313
execute_process(
1414
COMMAND git status -s --untracked-files=no

0 commit comments

Comments
 (0)