diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-10-30 11:47:19 +0100 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-10-30 14:47:41 +0100 |
commit | 1bac8a2d9f5e006c0ab5d417b3fd5cdf590d01de (patch) | |
tree | 649ad52e42f578db71c25fcd9faef8a026619e7c | |
parent | b30a29ed7490159be12ed033ea66c8913918d266 (diff) | |
download | justbuild-1bac8a2d9f5e006c0ab5d417b3fd5cdf590d01de.tar.gz |
Release 1.4.0~beta1v1.4.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 7b8296ca..2a1dbcd6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -78,6 +78,11 @@ local build root on upgrade. file the user might have in their home directory - Various improvements of the documentation. +## Release `1.4.0~beta1` (2024-10-30) + +First beta release for the upcoming `1.4.0` release; see release +notes there. + ## Release `1.3.0` (2024-05-08) A feature release on top of `1.2.0`, backwards compatible. diff --git a/src/buildtool/main/version.cpp b/src/buildtool/main/version.cpp index 4297fa60..9c9b2bba 100644 --- a/src/buildtool/main/version.cpp +++ b/src/buildtool/main/version.cpp @@ -23,7 +23,7 @@ auto version() -> std::string { std::size_t major = 1; std::size_t minor = 4; std::size_t revision = 0; - std::string suffix = "~alpha"; + std::string suffix = "~beta1"; #ifdef VERSION_EXTRA_SUFFIX suffix += VERSION_EXTRA_SUFFIX; #endif |