diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2023-05-15 12:09:54 +0200 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2023-05-15 13:49:19 +0200 |
commit | 2cf9af5e597abbe58f319e527eda5ac200ffbfd6 (patch) | |
tree | f16a7d6d21b5b0787617b5126e7260377e103841 | |
parent | 30f651ff4f4f1297e75bec90e0db72ce312bc079 (diff) | |
download | justbuild-2cf9af5e597abbe58f319e527eda5ac200ffbfd6.tar.gz |
Relase 1.1.0~beta2v1.1.0-beta2
-rw-r--r-- | CHANGELOG.md | 22 | ||||
-rw-r--r-- | src/buildtool/main/version.cpp | 2 |
2 files changed, 23 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 2af6daad..57404c0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,6 +31,28 @@ A feature release on top of `1.0.0`, backwards compatible. local CAS - `just analyse` now supports a new option `--dump-export-targets` +## Release `1.1.0~beta2` (2023-05-15) + +Second beta release for the upcoming `1.1.0` release; see release +notes there. + +### Changes since `1.1.0~beta1` + +- fix a race condition in our use of `libgit2` +- a fix in the error handling of git trees +- fixes to the third-party descriptions of our dependencies; in particular, + the structure of the `export` targets is cleaned up. These changes should + not affect package builds. +- various minor fixes to documentation and tests + +### Note + +There is a regression in `libgit2` versions `1.6.1` upto and +including `1.6.4` with a fix already committed upstream. This +regression makes `just` unusable when built against those versions. +Therefore, the third-party build description for `libgit2` is still +for version `1.5.2`. + ## Release `1.1.0~beta1` (2023-04-28) First beta release for the upcoming `1.1.0` release; see release diff --git a/src/buildtool/main/version.cpp b/src/buildtool/main/version.cpp index 7b6034dd..2b5e0f1a 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 = 1; std::size_t revision = 0; - std::string suffix = "~beta1"; + std::string suffix = "~beta2"; #ifdef VERSION_EXTRA_SUFFIX suffix += VERSION_EXTRA_SUFFIX; #endif |