diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-06-27 11:58:12 +0200 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-06-27 12:54:05 +0200 |
commit | 6edf9bd6b55df0e70fb425e27d1e19ce5970c58e (patch) | |
tree | a65e5a1ad9d27297c02d8caea11d60ea98aed3fc | |
parent | 7e5752fc8d56faedc661d1056bc7ec45ea59e704 (diff) | |
download | justbuild-6edf9bd6b55df0e70fb425e27d1e19ce5970c58e.tar.gz |
-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 |