summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md5
-rw-r--r--src/buildtool/main/version.cpp2
2 files changed, 6 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e0da14d8..2af6daad 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -31,6 +31,11 @@ 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~beta1` (2023-04-28)
+
+First beta release for the upcoming `1.1.0` release; see release
+notes there.
+
## Release `1.0.0` (2022-12-12)
Initial stable release.
diff --git a/src/buildtool/main/version.cpp b/src/buildtool/main/version.cpp
index 086b3b9b..7b6034dd 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 = "~alpha";
+ std::string suffix = "~beta1";
#ifdef VERSION_EXTRA_SUFFIX
suffix += VERSION_EXTRA_SUFFIX;
#endif