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