diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2023-08-29 12:29:00 +0200 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2023-08-29 12:29:00 +0200 |
commit | 959cd90083d0c783389cd09e187c98322c16469f (patch) | |
tree | f2c629846e22c8e95502a4428e62b025c6ac03c6 | |
parent | a34bee19b690fab6bf6353fab18af3b350e77049 (diff) | |
download | justbuild-959cd90083d0c783389cd09e187c98322c16469f.tar.gz |
Release 1.2.1v1.2.1
-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 46025f94..a3e5101c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,14 @@ -## Release `1.2.1` (UNRELEASED) +## Release `1.2.1` (2023-08-29) Bug fixes on top of release `1.2.0`. +### Fixes + +- Portability improvements to support a wider range of + system dependencies. +- Portability improvement of the bundled absl version. +- Typos in man pages fixed. + ## Release `1.2.0` (2023-08-25) A feature release on top of `1.1.0`, backwards compatible. diff --git a/src/buildtool/main/version.cpp b/src/buildtool/main/version.cpp index 7b83c129..20f09fb9 100644 --- a/src/buildtool/main/version.cpp +++ b/src/buildtool/main/version.cpp @@ -21,7 +21,7 @@ auto version() -> std::string { std::size_t major = 1; std::size_t minor = 2; std::size_t revision = 1; - std::string suffix = std::string{"~beta"}; + std::string suffix = std::string{}; #ifdef VERSION_EXTRA_SUFFIX suffix += VERSION_EXTRA_SUFFIX; #endif |