summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Aehlig <klaus.aehlig@huawei.com>2025-06-11 12:07:50 +0200
committerKlaus Aehlig <klaus.aehlig@huawei.com>2025-06-11 12:07:50 +0200
commit7ad13d5f3048a2ad02a53a37676df05c05bf25fc (patch)
treed90237f662acf3bbedafce728d13a0bc8d60d83a
parentbcf1d9a1ed766ee35808f23b48481cbc5168346f (diff)
downloadjustbuild-7ad13d5f3048a2ad02a53a37676df05c05bf25fc.tar.gz
Start 1.5.3 development cycle
-rw-r--r--CHANGELOG.md5
-rw-r--r--src/buildtool/main/version.cpp4
2 files changed, 7 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4d3cbfb8..b12d38ba 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+## Release `1.5.3` (UNRELEASED)
+
+Bug fixes on top of `1.5.2`.
+
+
## Release `1.5.2` (2025-05-19)
Bug fixes on top of `1.5.1`.
diff --git a/src/buildtool/main/version.cpp b/src/buildtool/main/version.cpp
index c8ff3107..19c073aa 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 = 5;
- static const std::size_t kRevision = 2;
- std::string suffix = std::string{};
+ static const std::size_t kRevision = 3;
+ std::string suffix = "~beta";
#ifdef VERSION_EXTRA_SUFFIX
suffix += VERSION_EXTRA_SUFFIX;
#endif