From e1ee04684c34ae30ac3c91b6753e99a81a9dc51c Mon Sep 17 00:00:00 2001 From: Klaus Aehlig Date: Tue, 17 Oct 2023 10:36:40 +0200 Subject: Release 1.2.2 --- CHANGELOG.md | 8 +++++++- src/buildtool/main/version.cpp | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ccaa2a2..de52b56c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,13 @@ -## Release `1.2.2` (UNRELEASED) +## Release `1.2.2` (2023-10-17) Bug fixes on top of release `1.2.1`. +### Fixes + +- Proper handling of fetch errors in `just-mr` +- Portability improvements: bootstrapping with `-Wno-pedantic`, + case-insensitive naming, fixed version ranges in conditionals + ## Release `1.2.1` (2023-08-29) Bug fixes on top of release `1.2.0`. diff --git a/src/buildtool/main/version.cpp b/src/buildtool/main/version.cpp index c27a88c9..0c92b9ba 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 = 2; - std::string suffix = "~beta"; + std::string suffix = std::string{}; #ifdef VERSION_EXTRA_SUFFIX suffix += VERSION_EXTRA_SUFFIX; #endif -- cgit v1.2.3