Skip to content

Commit c2ea58c

Browse files
authored
chore: prepare for 2.3.1 (#797)
Signed-off-by: Henry Schreiner <[email protected]> Signed-off-by: Henry Schreiner <[email protected]>
1 parent e2270dd commit c2ea58c

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

.appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 2.3.0.{build}
1+
version: 2.3.1.{build}
22

33
branches:
44
only:

.pre-commit-config.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ repos:
4444
hooks:
4545
- id: markdownlint
4646
args: ["--style=scripts/mdlint_style.rb"]
47+
# Uncomment on macOS - Apple has deprecated Ruby, so macOS is stuck on 2.6
48+
# language_version: 3.1.2
4749

4850
# - repo: local
4951
# hooks:

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,20 @@ still default, and is not yet distributed via binaries.
3131
[#775]: https://github.com/CLIUtils/CLI11/pull/775
3232
[#781]: https://github.com/CLIUtils/CLI11/pull/781
3333

34+
### Version 2.3.1: Missing implementation
35+
36+
A function implementation was missing after the pre-compile move, missed due to
37+
the fact we lost 100% after losing coverage checking. We are working on filling
38+
out 100% coverage again to ensure this doesn't happen again!
39+
40+
- Bugfix: `App::get_option_group` implementation missing [#793][]
41+
- Bugfix: Fix spacing when setting an empty footer [#796][]
42+
- Bugfix: Address Klocwork static analysis checking issues [#785][]
43+
44+
[#785]: https://github.com/CLIUtils/CLI11/pull/785
45+
[#793]: https://github.com/CLIUtils/CLI11/pull/793
46+
[#796]: https://github.com/CLIUtils/CLI11/pull/796
47+
3448
## Version 2.2: Option and Configuration Flexibility
3549

3650
New features include support for output of an empty vector, a summing option

include/CLI/Version.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
#define CLI11_VERSION_MAJOR 2
1212
#define CLI11_VERSION_MINOR 3
13-
#define CLI11_VERSION_PATCH 0
14-
#define CLI11_VERSION "2.3.0"
13+
#define CLI11_VERSION_PATCH 1
14+
#define CLI11_VERSION "2.3.1"
1515

1616
// [CLI11:version_hpp:end]

0 commit comments

Comments
 (0)