diff options
-rw-r--r-- | CHANGELOG.md | 12 | ||||
-rw-r--r-- | src/buildtool/main/version.cpp | 2 |
2 files changed, 13 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c8ccad3..3581eaa2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -57,6 +57,18 @@ 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~beta2` (2023-08-18) + +Second beta release for the upcoming `1.2.0` release; see release +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. +- Various documentation improvements. + ## Release `1.2.0~beta1` (2023-08-16) First beta release for the upcoming `1.2.0` release; see release diff --git a/src/buildtool/main/version.cpp b/src/buildtool/main/version.cpp index 28e63984..2a00cd21 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 = "~beta1"; + std::string suffix = "~beta2"; #ifdef VERSION_EXTRA_SUFFIX suffix += VERSION_EXTRA_SUFFIX; #endif |