summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md8
-rw-r--r--src/buildtool/main/version.cpp2
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