Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ OPTIONS
VERSION
Last update:
Eat-Me-App version:
Sharg version: 1.2.1-rc.1
Sharg version: 1.2.1
```
<!-- MARKDOWN-AUTO-DOCS:END -->

Expand Down
2 changes: 1 addition & 1 deletion include/sharg/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
//!\brief The patch version as MACRO.
#define SHARG_VERSION_PATCH 1
//!\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)
Expand Down
2 changes: 1 addition & 1 deletion test/snippet/readme_sneak_peek.out
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ OPTIONS
VERSION
Last update:
Eat-Me-App version:
Sharg version: 1.2.1-rc.1
Sharg version: 1.2.1
2 changes: 1 addition & 1 deletion test/unit/detail/format_ctd_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.1-rc.1";
parser.info.version = "1.2.1";
parser.info.man_page_title = "default_man_page_title";
parser.info.short_description = "A short description here.";

Expand Down
2 changes: 1 addition & 1 deletion test/unit/detail/format_cwl_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.1-rc.1";
parser.info.version = "1.2.1";
parser.info.man_page_title = "default_man_page_title";
parser.info.short_description = "A short description here.";

Expand Down