Skip to content

Commit 4e8a60e

Browse files
committed
chore: set release version
1 parent 8cc07db commit 4e8a60e

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

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.1-rc.1
161+
Sharg version: 1.2.1
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 1
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.1-rc.1
31+
Sharg version: 1.2.1

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.1-rc.1";
117+
parser.info.version = "1.2.1";
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.1-rc.1";
24+
parser.info.version = "1.2.1";
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)