diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2023-12-19 10:27:19 +0100 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2023-12-19 10:27:19 +0100 |
commit | 215e6afab93d28aeea54cb2c657afda0e5453307 (patch) | |
tree | 9c89f0b830871b0e0ae9566a078fbbd5f45a02ad | |
parent | 599dddc182b702192252753c76429d3da44aa463 (diff) | |
download | justbuild-1.2.4.tar.gz |
Release 1.2.4v1.2.4
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | src/buildtool/main/version.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ecee63c..f54c2d02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## Release `1.2.4` (UNRELEASED) +## Release `1.2.4` (2023-12-19) Bug fixes on top of release `1.2.3`. diff --git a/src/buildtool/main/version.cpp b/src/buildtool/main/version.cpp index be7dd54a..d81a5065 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 = 4; - std::string suffix = "~beta"; + std::string suffix = std::string{}; #ifdef VERSION_EXTRA_SUFFIX suffix += VERSION_EXTRA_SUFFIX; #endif |