From cdb9e21920042e6e3d4c0d572cb086ca3b750fe5 Mon Sep 17 00:00:00 2001 From: Enrico Seiler Date: Sat, 28 Feb 2026 21:40:17 +0100 Subject: [PATCH 1/2] docs: changelog --- CHANGELOG.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6957c9f2..e725eb66 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,19 @@ The following API changes should be documented as such: If possible, provide tooling that performs the changes, e.g. a shell-script. --> +# Release 1.2.2 + +## Bug fixes + +* Resolved an issue preventing `seqan3/std/charconv' from working on macOS + ([\#304](https://github.com/seqan/sharg-parser/pull/304)). + +# Release 1.2.1 + +## Bug fixes + +* Updated the TDL dependency ([#300](https://github.com/seqan/sharg-parser/pull/300)). + # Release 1.2.0 ## Features From 583c71f7c5c0552d3fe73567409b00a2b1f04829 Mon Sep 17 00:00:00 2001 From: Enrico Seiler Date: Sat, 28 Feb 2026 21:42:02 +0100 Subject: [PATCH 2/2] chore: set release --- README.md | 2 +- include/sharg/version.hpp | 2 +- test/snippet/readme_sneak_peek.out | 2 +- test/unit/detail/format_ctd_test.cpp | 2 +- test/unit/detail/format_cwl_test.cpp | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 6a704a3c..c5e5c87d 100644 --- a/README.md +++ b/README.md @@ -158,7 +158,7 @@ OPTIONS VERSION Last update: Eat-Me-App version: - Sharg version: 1.2.2-rc.1 + Sharg version: 1.2.2 ``` diff --git a/include/sharg/version.hpp b/include/sharg/version.hpp index ccaf04db..f55badc4 100644 --- a/include/sharg/version.hpp +++ b/include/sharg/version.hpp @@ -19,7 +19,7 @@ //!\brief The patch version as MACRO. #define SHARG_VERSION_PATCH 2 //!\brief The release candidate number. 0 means stable release, >= 1 means release candidate. -#define SHARG_RELEASE_CANDIDATE 1 +#define SHARG_RELEASE_CANDIDATE 0 //!\brief The full version as MACRO (number). #define SHARG_VERSION (SHARG_VERSION_MAJOR * 10000 + SHARG_VERSION_MINOR * 100 + SHARG_VERSION_PATCH) diff --git a/test/snippet/readme_sneak_peek.out b/test/snippet/readme_sneak_peek.out index 7e8292de..83b83757 100644 --- a/test/snippet/readme_sneak_peek.out +++ b/test/snippet/readme_sneak_peek.out @@ -28,4 +28,4 @@ OPTIONS VERSION Last update: Eat-Me-App version: - Sharg version: 1.2.2-rc.1 + Sharg version: 1.2.2 diff --git a/test/unit/detail/format_ctd_test.cpp b/test/unit/detail/format_ctd_test.cpp index ad432f13..5525ad34 100644 --- a/test/unit/detail/format_ctd_test.cpp +++ b/test/unit/detail/format_ctd_test.cpp @@ -114,7 +114,7 @@ TEST_F(format_ctd_test, empty_information) // Create the dummy parser. auto parser = get_parser("--export-help", "ctd"); parser.info.date = "December 01, 1994"; - parser.info.version = "1.2.2-rc.1"; + parser.info.version = "1.2.2"; parser.info.man_page_title = "default_man_page_title"; parser.info.short_description = "A short description here."; diff --git a/test/unit/detail/format_cwl_test.cpp b/test/unit/detail/format_cwl_test.cpp index 9f5ef7ec..8a7b3609 100644 --- a/test/unit/detail/format_cwl_test.cpp +++ b/test/unit/detail/format_cwl_test.cpp @@ -21,7 +21,7 @@ TEST_F(format_cwl_test, empty_information) // Create the dummy parser. auto parser = get_parser("--export-help", "cwl"); parser.info.date = "December 01, 1994"; - parser.info.version = "1.2.2-rc.1"; + parser.info.version = "1.2.2"; parser.info.man_page_title = "default_man_page_title"; parser.info.short_description = "A short description here.";