summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md22
-rw-r--r--src/buildtool/main/version.cpp2
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