Skip to content

Commit 7514a86

Browse files
authored
Merge pull request seqan#305 from eseiler/infra/release
Prepare release
2 parents 858e1cf + 583c71f commit 7514a86

File tree

6 files changed

+18
-5
lines changed

6 files changed

+18
-5
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,19 @@ The following API changes should be documented as such:
2424
If possible, provide tooling that performs the changes, e.g. a shell-script.
2525
-->
2626

27+
# Release 1.2.2
28+
29+
## Bug fixes
30+
31+
* Resolved an issue preventing `seqan3/std/charconv' from working on macOS
32+
([\#304](https://github.com/seqan/sharg-parser/pull/304)).
33+
34+
# Release 1.2.1
35+
36+
## Bug fixes
37+
38+
* Updated the TDL dependency ([#300](https://github.com/seqan/sharg-parser/pull/300)).
39+
2740
# Release 1.2.0
2841

2942
## Features

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ OPTIONS
158158
VERSION
159159
Last update:
160160
Eat-Me-App version:
161-
Sharg version: 1.2.2-rc.1
161+
Sharg version: 1.2.2
162162
```
163163
<!-- MARKDOWN-AUTO-DOCS:END -->
164164

include/sharg/version.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
//!\brief The patch version as MACRO.
2020
#define SHARG_VERSION_PATCH 2
2121
//!\brief The release candidate number. 0 means stable release, >= 1 means release candidate.
22-
#define SHARG_RELEASE_CANDIDATE 1
22+
#define SHARG_RELEASE_CANDIDATE 0
2323

2424
//!\brief The full version as MACRO (number).
2525
#define SHARG_VERSION (SHARG_VERSION_MAJOR * 10000 + SHARG_VERSION_MINOR * 100 + SHARG_VERSION_PATCH)

test/snippet/readme_sneak_peek.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ OPTIONS
2828
VERSION
2929
Last update:
3030
Eat-Me-App version:
31-
Sharg version: 1.2.2-rc.1
31+
Sharg version: 1.2.2

test/unit/detail/format_ctd_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ TEST_F(format_ctd_test, empty_information)
114114
// Create the dummy parser.
115115
auto parser = get_parser("--export-help", "ctd");
116116
parser.info.date = "December 01, 1994";
117-
parser.info.version = "1.2.2-rc.1";
117+
parser.info.version = "1.2.2";
118118
parser.info.man_page_title = "default_man_page_title";
119119
parser.info.short_description = "A short description here.";
120120

test/unit/detail/format_cwl_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ TEST_F(format_cwl_test, empty_information)
2121
// Create the dummy parser.
2222
auto parser = get_parser("--export-help", "cwl");
2323
parser.info.date = "December 01, 1994";
24-
parser.info.version = "1.2.2-rc.1";
24+
parser.info.version = "1.2.2";
2525
parser.info.man_page_title = "default_man_page_title";
2626
parser.info.short_description = "A short description here.";
2727

0 commit comments

Comments
 (0)