diff options
-rw-r--r-- | CHANGELOG.md | 9 | ||||
-rw-r--r-- | src/buildtool/main/version.cpp | 2 |
2 files changed, 9 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index a3d01525..5de90d60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## Release `1.6.0` (UNRELEASED) +## Release `1.6.0` (2025-06-27) A feature release on top of `1.5.0`, backwards compatible. @@ -54,6 +54,13 @@ for building and testing. So, to avoid accidentally trying to fetch more than is absolutely needed, `bin/bootstrap.py` was changed to use the original, manually-maintained `etc/repos.in.json`. +### Changes since `1.6.0~beta1` + +- The flexible variables of the bundled `ssl` description have been fixed, + fixing a bootstrap issue in bundled (i.e., non-package) build. +- The setup of one test has been fixed. +- Various improvements to the documentation. + ## Release `1.6.0~beta1` (2025-06-24) First beta release for the upcoming `1.6.0` release; see release diff --git a/src/buildtool/main/version.cpp b/src/buildtool/main/version.cpp index ec847f32..1b5ece6a 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 = 6; static const std::size_t kRevision = 0; - std::string suffix = "~beta1"; + std::string suffix = std::string{}; #ifdef VERSION_EXTRA_SUFFIX suffix += VERSION_EXTRA_SUFFIX; #endif |