diff options
author | Oliver Reiche <oliver.reiche@huawei.com> | 2023-08-22 12:13:24 +0200 |
---|---|---|
committer | Oliver Reiche <oliver.reiche@huawei.com> | 2023-08-22 12:13:24 +0200 |
commit | 8eb74daa0a800ca0552ad691aef76b27288ec8cb (patch) | |
tree | 4f06b83a663a48454fa3a7f61daebc46e5b6f289 | |
parent | a0a02385438089ad927f02dccb649c0d317e4ffb (diff) | |
download | justbuild-8eb74daa0a800ca0552ad691aef76b27288ec8cb.tar.gz |
Release 1.2.0~beta3v1.2.0-beta3
-rw-r--r-- | CHANGELOG.md | 14 | ||||
-rw-r--r-- | src/buildtool/main/version.cpp | 2 |
2 files changed, 13 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 3581eaa2..cfedfeba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -57,6 +57,16 @@ A feature release on top of `1.1.0`, backwards compatible. - `just install-cas` now, like `just install`, removes an existing destination file before installing instead of overwriting. +## Release `1.2.0~beta3` (2023-08-22) + +Third beta release for the upcoming `1.2.0` release; see release +notes there. + +### Changes since `1.2.0~beta2` + +- Update and clean up of bundled dependency descriptions +- Improvement of documentation + ## Release `1.2.0~beta2` (2023-08-18) Second beta release for the upcoming `1.2.0` release; see release @@ -65,8 +75,8 @@ notes there. ### Changes since `1.2.0~beta1` - Clean up of the internal build description of bundled dependencies. -- Clean up of the the internal rules, in particular renaming of - implict dependency targets. +- Clean up of the internal rules, in particular renaming of + implicit dependency targets. - Various documentation improvements. ## Release `1.2.0~beta1` (2023-08-16) diff --git a/src/buildtool/main/version.cpp b/src/buildtool/main/version.cpp index 2a00cd21..b7306fcc 100644 --- a/src/buildtool/main/version.cpp +++ b/src/buildtool/main/version.cpp @@ -21,7 +21,7 @@ auto version() -> std::string { std::size_t major = 1; std::size_t minor = 2; std::size_t revision = 0; - std::string suffix = "~beta2"; + std::string suffix = "~beta3"; #ifdef VERSION_EXTRA_SUFFIX suffix += VERSION_EXTRA_SUFFIX; #endif |