summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Aehlig <klaus.aehlig@huawei.com>2025-06-24 12:53:47 +0200
committerKlaus Aehlig <klaus.aehlig@huawei.com>2025-06-24 16:24:41 +0200
commit13aa7b785cdc4d36c7ea37634ba35c038ade6b86 (patch)
tree2587fa00fc1c96b9239f88325578e90850bfcc1e
parent33c576f9730da83752b2211efa4752c7f7d3d9af (diff)
downloadjustbuild-13aa7b785cdc4d36c7ea37634ba35c038ade6b86.tar.gz
Release 1.6.0~beta1v1.6.0-beta1
-rw-r--r--CHANGELOG.md6
-rw-r--r--src/buildtool/main/version.cpp2
2 files changed, 7 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 08a3ae98..723e9c68 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -54,6 +54,12 @@ for building and testing. So, to avoid accidentally trying to fetch
more than is absolutely needed, `bin/bootstrap.py` was changed to
use the original, manually-maintained `etc/repos.in.json`.
+## Release `1.6.0~beta1` (2025-06-24)
+
+First beta release for the upcoming `1.6.0` release; see release
+notes there.
+
+
## Release `1.5.0` (2025-03-06)
A feature release on top of `1.4.0`, backwards compatible.
diff --git a/src/buildtool/main/version.cpp b/src/buildtool/main/version.cpp
index 87c1a0bd..ec847f32 100644
--- a/src/buildtool/main/version.cpp
+++ b/src/buildtool/main/version.cpp
@@ -25,7 +25,7 @@ auto version() -> std::string {
static const std::size_t kMajor = 1;
static const std::size_t kMinor = 6;
static const std::size_t kRevision = 0;
- std::string suffix = "~alpha";
+ std::string suffix = "~beta1";
#ifdef VERSION_EXTRA_SUFFIX
suffix += VERSION_EXTRA_SUFFIX;
#endif