Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions cmake/autogenerated_versions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@

# NOTE: has nothing common with DBMS_TCP_PROTOCOL_VERSION,
# only DBMS_TCP_PROTOCOL_VERSION should be incremented on protocol changes.
SET(VERSION_REVISION 40)
SET(VERSION_REVISION 54460)
SET(VERSION_MAJOR 22)
SET(VERSION_MINOR 3)
SET(VERSION_PATCH 8)
SET(VERSION_GITHASH 420bdfa27510fe18e20f881d74ab66cddc44583d)
SET(VERSION_DESCRIBE v22.3.8.40-altinitystable)
SET(VERSION_TWEAK 40)
SET(VERSION_FLAVOUR altinitystable)
SET(VERSION_DESCRIBE v22.3.8.40.altinitystable)
SET(VERSION_STRING 22.3.8.40.altinitystable)
# end of autochange
3 changes: 2 additions & 1 deletion tests/ci/version_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,8 @@ def get_version_from_repo(
versions["revision"],
git,
# Explicitly use tweak value from version file
tweak=versions["revision"]
tweak=versions.get("tweak", versions["revision"]),
flavour=versions["flavour"]
)


Expand Down