diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-05-02 10:58:18 +0200 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-05-02 12:29:40 +0200 |
commit | e40439b4df897b44ef38601475ee6b9a50002741 (patch) | |
tree | d93dab94fa82d95ad2fc92948266516378785818 | |
parent | a8fc6fc51c6c9ef90ae1480f0ff4448d69b0e235 (diff) | |
download | justbuild-e40439b4df897b44ef38601475ee6b9a50002741.tar.gz |
Release 1.3.0~beta1v1.3.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 1b8bac3d..9b639ae1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -100,6 +100,11 @@ A feature release on top of `1.2.0`, backwards compatible. repeated multiple times to list all the properties, but only the last one was retained. This is fixed now. +## Release `1.3.0~beta1` (2024-05-02) + +First beta release for the upcoming `1.3.0` release; see release +notes there. + ## Release `1.2.0` (2023-08-25) A feature release on top of `1.1.0`, backwards compatible. diff --git a/src/buildtool/main/version.cpp b/src/buildtool/main/version.cpp index 0dae24b8..09989e0b 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 = 3; std::size_t revision = 0; - std::string suffix = "~alpha"; + std::string suffix = "~beta1"; #ifdef VERSION_EXTRA_SUFFIX suffix += VERSION_EXTRA_SUFFIX; #endif |