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