diff options
-rw-r--r-- | CHANGELOG.md | 4 | ||||
-rw-r--r-- | src/buildtool/main/version.cpp | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 5de90d60..ab1fbc77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## Release `1.6.1` (UNRELEASED) + +Bug fixes on top of `1.6.0`. + ## Release `1.6.0` (2025-06-27) A feature release on top of `1.5.0`, backwards compatible. diff --git a/src/buildtool/main/version.cpp b/src/buildtool/main/version.cpp index 1b5ece6a..68b73551 100644 --- a/src/buildtool/main/version.cpp +++ b/src/buildtool/main/version.cpp @@ -24,8 +24,8 @@ auto version() -> std::string { static const std::size_t kMajor = 1; static const std::size_t kMinor = 6; - static const std::size_t kRevision = 0; - std::string suffix = std::string{}; + static const std::size_t kRevision = 1; + std::string suffix = "~beta"; #ifdef VERSION_EXTRA_SUFFIX suffix += VERSION_EXTRA_SUFFIX; #endif |