diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-02-24 13:43:02 +0100 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-02-24 13:43:31 +0100 |
commit | e61131b18ad90e9fc067e6036cbcd6c64b28c986 (patch) | |
tree | 56221f2e0cb864b5f37d77083031289ffb008731 | |
parent | a42766ceb405ea47fdd55a9003557295f7a8efa8 (diff) | |
download | justbuild-e61131b18ad90e9fc067e6036cbcd6c64b28c986.tar.gz |
Release 1.5.0~beta1v1.5.0-beta1
-rw-r--r-- | CHANGELOG.md | 5 | ||||
-rw-r--r-- | src/buildtool/main/version.cpp | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 7af4dd5c..dfdeaf3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -49,6 +49,11 @@ A feature release on top of `1.4.0`, backwards compatible. is now correctly honored, if announced by the server. - Missing entries in the documentation have been added. +### Release `1.5.0~beta1` (2025-02-24) + +First beta release for the upcoming `1.5.0` release; see release +notes there. + ## Release `1.4.0` (2024-11-04) A feature release on top of `1.3.0`, backwards compatible with diff --git a/src/buildtool/main/version.cpp b/src/buildtool/main/version.cpp index a5c70b34..b19d3a31 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 = 5; static const std::size_t kRevision = 0; - std::string suffix = "~alpha"; + std::string suffix = "~beta1"; #ifdef VERSION_EXTRA_SUFFIX suffix += VERSION_EXTRA_SUFFIX; #endif |