diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-08-11 14:41:35 +0200 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-08-11 14:41:35 +0200 |
commit | 00141288005c5157ff3baa420c7d98af4c634644 (patch) | |
tree | 425eac5c9756232a481eaa89eb184133b87b8a77 | |
parent | 58bc2ad1540238e03ea043a5376095a6383ccc93 (diff) | |
download | justbuild-master.tar.gz |
-rw-r--r-- | CHANGELOG.md | 4 | ||||
-rw-r--r-- | src/buildtool/main/version.cpp | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 11c979fd..bb745502 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## Release `1.6.4` (UNRELEASED) + +Bug fixes on top of `1.6.3`. + ## Release `1.6.3` (2025-08-11) Bug fixes on top of `1.6.2`. diff --git a/src/buildtool/main/version.cpp b/src/buildtool/main/version.cpp index 70a40d01..692e15e2 100644 --- a/src/buildtool/main/version.cpp +++ b/src/buildtool/main/version.cpp @@ -24,8 +24,8 @@ auto version() -> std::string { static const std::size_t kMajor = 1; static const std::size_t kMinor = 6; - static const std::size_t kRevision = 3; - std::string suffix = std::string{}; + static const std::size_t kRevision = 4; + std::string suffix = "~beta"; #ifdef VERSION_EXTRA_SUFFIX suffix += VERSION_EXTRA_SUFFIX; #endif |