diff options
-rw-r--r-- | CHANGELOG.md | 5 | ||||
-rw-r--r-- | src/buildtool/main/version.cpp | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index f6550334..0c8ccad3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -57,6 +57,11 @@ 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~beta1` (2023-08-16) + +First beta release for the upcoming `1.2.0` release; see release +notes there. + ## Release `1.1.0` (2023-05-19) A feature release on top of `1.0.0`, backwards compatible. diff --git a/src/buildtool/main/version.cpp b/src/buildtool/main/version.cpp index 5dfd3e5b..28e63984 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 = "~alpha"; + std::string suffix = "~beta1"; #ifdef VERSION_EXTRA_SUFFIX suffix += VERSION_EXTRA_SUFFIX; #endif |