summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md3
-rw-r--r--src/buildtool/main/version.cpp2
2 files changed, 3 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e7ad3a25..e9dc774c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,4 @@
-## Release `1.5.0` (UNRELEASED)
+## Release `1.5.0` (2025-03-06)
A feature release on top of `1.4.0`, backwards compatible.
@@ -67,6 +67,7 @@ A feature release on top of `1.4.0`, backwards compatible.
even though this was requested.
- Unnecessary verbosity reduced.
- Updated dependencies.
+- Documentation extended.
## Release `1.5.0~beta2` (2025-02-28)
diff --git a/src/buildtool/main/version.cpp b/src/buildtool/main/version.cpp
index 4d3abac1..6d553630 100644
--- a/src/buildtool/main/version.cpp
+++ b/src/buildtool/main/version.cpp
@@ -25,7 +25,7 @@ auto version() -> std::string {
static const std::size_t kMajor = 1;
static const std::size_t kMinor = 5;
static const std::size_t kRevision = 0;
- std::string suffix = "~beta2";
+ std::string suffix = std::string{};
#ifdef VERSION_EXTRA_SUFFIX
suffix += VERSION_EXTRA_SUFFIX;
#endif