Skip to content

Commit 983dc3d

Browse files
authored
Merge pull request #302 from eseiler/infra/cump
chore: bump version
2 parents fb91442 + 0b1eebe commit 983dc3d

File tree

7 files changed

+58
-8
lines changed

7 files changed

+58
-8
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
161+
Sharg version: 1.2.2-rc.1
162162
```
163163
<!-- MARKDOWN-AUTO-DOCS:END -->
164164

include/sharg/version.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
//!\brief The minor version as MACRO.
1818
#define SHARG_VERSION_MINOR 2
1919
//!\brief The patch version as MACRO.
20-
#define SHARG_VERSION_PATCH 1
20+
#define SHARG_VERSION_PATCH 2
2121
//!\brief The release candidate number. 0 means stable release, >= 1 means release candidate.
22-
#define SHARG_RELEASE_CANDIDATE 0
22+
#define SHARG_RELEASE_CANDIDATE 1
2323

2424
//!\brief The full version as MACRO (number).
2525
#define SHARG_VERSION (SHARG_VERSION_MAJOR * 10000 + SHARG_VERSION_MINOR * 100 + SHARG_VERSION_PATCH)
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
From 0410716fff941cd751d4ce0135c4941d96e1eab7 Mon Sep 17 00:00:00 2001
2+
From: Enrico Seiler <enrico.seiler@hotmail.de>
3+
Date: Sun, 18 Jan 2026 19:23:23 +0100
4+
Subject: [PATCH] [NOAPI] Bump version
5+
6+
---
7+
test/snippet/readme_sneak_peek.out | 2 +-
8+
test/unit/detail/format_ctd_test.cpp | 2 +-
9+
test/unit/detail/format_cwl_test.cpp | 2 +-
10+
3 files changed, 3 insertions(+), 3 deletions(-)
11+
12+
diff --git a/test/snippet/readme_sneak_peek.out b/test/snippet/readme_sneak_peek.out
13+
index 99c4be7..7e8292d 100644
14+
--- a/test/snippet/readme_sneak_peek.out
15+
+++ b/test/snippet/readme_sneak_peek.out
16+
@@ -28,4 +28,4 @@ OPTIONS
17+
VERSION
18+
Last update:
19+
Eat-Me-App version:
20+
- Sharg version: 1.2.1
21+
+ Sharg version: 1.2.2-rc.1
22+
diff --git a/test/unit/detail/format_ctd_test.cpp b/test/unit/detail/format_ctd_test.cpp
23+
index 6dd2aea..ad432f1 100644
24+
--- a/test/unit/detail/format_ctd_test.cpp
25+
+++ b/test/unit/detail/format_ctd_test.cpp
26+
@@ -114,7 +114,7 @@ TEST_F(format_ctd_test, empty_information)
27+
// Create the dummy parser.
28+
auto parser = get_parser("--export-help", "ctd");
29+
parser.info.date = "December 01, 1994";
30+
- parser.info.version = "1.2.1";
31+
+ parser.info.version = "1.2.2-rc.1";
32+
parser.info.man_page_title = "default_man_page_title";
33+
parser.info.short_description = "A short description here.";
34+
35+
diff --git a/test/unit/detail/format_cwl_test.cpp b/test/unit/detail/format_cwl_test.cpp
36+
index 7c8862a..9f5ef7e 100644
37+
--- a/test/unit/detail/format_cwl_test.cpp
38+
+++ b/test/unit/detail/format_cwl_test.cpp
39+
@@ -21,7 +21,7 @@ TEST_F(format_cwl_test, empty_information)
40+
// Create the dummy parser.
41+
auto parser = get_parser("--export-help", "cwl");
42+
parser.info.date = "December 01, 1994";
43+
- parser.info.version = "1.2.1";
44+
+ parser.info.version = "1.2.2-rc.1";
45+
parser.info.man_page_title = "default_man_page_title";
46+
parser.info.short_description = "A short description here.";
47+
48+
--
49+
2.47.3
50+

test/api_stability/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ find_package (Git)
1515
include (../sharg-test.cmake)
1616

1717
include (ExternalProject)
18-
set (SHARG_LAST_STABLE_VERSION "1.2.0")
18+
set (SHARG_LAST_STABLE_VERSION "1.2.1")
1919
set (SHARG_LAST_STABLE_SOURCE_URL
2020
"https://github.com/seqan/sharg-parser/releases/download/${SHARG_LAST_STABLE_VERSION}/sharg-${SHARG_LAST_STABLE_VERSION}-Source.tar.xz"
2121
)
22-
set (SHARG_LAST_STABLE_SOURCE_SHA256 "aac491bbde0d4d5446277c7c1f6cb4b814b2b4793b14b77f9838f139d50ae29f")
22+
set (SHARG_LAST_STABLE_SOURCE_SHA256 "3ff0bf3ae2b3b5f927445bca2224918c2954a716c12633be531a35e183bf94b6")
2323

2424
set (SHARG_API_STABILITY_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DSHARG_DISABLE_DEPRECATED_WARNINGS=1")
2525

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
31+
Sharg version: 1.2.2-rc.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";
117+
parser.info.version = "1.2.2-rc.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";
24+
parser.info.version = "1.2.2-rc.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)