Skip to content

Commit 2df9ad2

Browse files
authored
Merge pull request #1664 from greatscottgadgets/post-release
Set version to 2026.01.3+
2 parents 1cfe7df + a7dc786 commit 2df9ad2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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)