summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md17
-rw-r--r--src/buildtool/main/version.cpp2
2 files changed, 17 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index cfedfeba..088d5531 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,4 @@
-## Release `1.2.0` (UNRELEASED)
+## Release `1.2.0` (2023-08-25)
A feature release on top of `1.1.0`, backwards compatible.
@@ -56,6 +56,21 @@ A feature release on top of `1.1.0`, backwards compatible.
remote-execution endpoints.
- `just install-cas` now, like `just install`, removes an existing
destination file before installing instead of overwriting.
+- Only actions with exit code 0 that generated all required outputs
+ are taken from cache, instead of all actions with exit code 0.
+ This only affects remote execution, as purely local build didn't
+ cache actions with incomplete outputs.
+
+### Changes since `1.2.0~beta3`
+
+- Only actions with exit code 0 that generated all required outputs
+ are taken from cache, instead of all actions with exit code 0.
+ This only affects remote execution, as purely local build didn't
+ cache actions with incomplete outputs.
+- Splitting off libraries from the main binary targets to simplify
+ cherry-picking future fixes from the head development branch.
+- Improvements of the bundled dependency descriptions.
+- Update of documentation.
## Release `1.2.0~beta3` (2023-08-22)
diff --git a/src/buildtool/main/version.cpp b/src/buildtool/main/version.cpp
index b7306fcc..07e32c4a 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 = "~beta3";
+ std::string suffix = std::string{};
#ifdef VERSION_EXTRA_SUFFIX
suffix += VERSION_EXTRA_SUFFIX;
#endif