diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-02-28 14:47:28 +0100 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-02-28 15:22:29 +0100 |
commit | 85905abb128c7684ad2760c18c47133d4b146154 (patch) | |
tree | 9b1c0377541a1bdd2e0049101ef46979e9fe5c8d | |
parent | c796044efcd82e3d719715fd360e434f277e7a5b (diff) | |
download | justbuild-85905abb128c7684ad2760c18c47133d4b146154.tar.gz |
Release 1.5.0~beta2v1.5.0-beta2
-rw-r--r-- | CHANGELOG.md | 9 | ||||
-rw-r--r-- | src/buildtool/main/version.cpp | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 174e04a7..2ae20d65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -56,9 +56,18 @@ 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~beta2` (2025-02-28) + +Second beta release for the upcoming `1.5.0` release; see release +notes there. + ### Changes since `1.5.0~beta1` - New configuration option `"client address"` for `just serve`. +- `just-lock` now fetches and clones repositories in parallel. +- Blob content is not any more kept in memory unecessarily at + various places. +- Various internal clean up of the code base. ## Release `1.5.0~beta1` (2025-02-24) diff --git a/src/buildtool/main/version.cpp b/src/buildtool/main/version.cpp index b19d3a31..4d3abac1 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 = "~beta1"; + std::string suffix = "~beta2"; #ifdef VERSION_EXTRA_SUFFIX suffix += VERSION_EXTRA_SUFFIX; #endif |