diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-11-04 11:16:45 +0100 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-11-04 11:50:13 +0100 |
commit | 562bddf70175a602f896397f41ee5f5e07e834eb (patch) | |
tree | 175cb34ef8b04cf725da3e7bd003c879c9c93c89 | |
parent | 35048bc6be1a2f6b480c7210c420672295eee483 (diff) | |
download | justbuild-562bddf70175a602f896397f41ee5f5e07e834eb.tar.gz |
Release 1.4.0v1.4.0
-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 2a1dbcd6..db1f6672 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## Release `1.4.0` (UNRELEASED) +## Release `1.4.0` (2024-11-04) A feature release on top of `1.3.0`, backwards compatible with respect to rule language, build description, repository description, diff --git a/src/buildtool/main/version.cpp b/src/buildtool/main/version.cpp index 9c9b2bba..d00fe631 100644 --- a/src/buildtool/main/version.cpp +++ b/src/buildtool/main/version.cpp @@ -23,7 +23,7 @@ auto version() -> std::string { std::size_t major = 1; std::size_t minor = 4; std::size_t revision = 0; - std::string suffix = "~beta1"; + std::string suffix = std::string{}; #ifdef VERSION_EXTRA_SUFFIX suffix += VERSION_EXTRA_SUFFIX; #endif |