Commit c2ea58c7f9bb2a1da2d3d7f5b462121ac6a07f16

Authored by Henry Schreiner
Committed by GitHub
1 parent e2270dd6

chore: prepare for 2.3.1 (#797)

Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>

Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
.appveyor.yml
1   -version: 2.3.0.{build}
  1 +version: 2.3.1.{build}
2 2  
3 3 branches:
4 4 only:
... ...
.pre-commit-config.yaml
... ... @@ -44,6 +44,8 @@ repos:
44 44 hooks:
45 45 - id: markdownlint
46 46 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
47 49  
48 50 # - repo: local
49 51 # hooks:
... ...
CHANGELOG.md
... ... @@ -31,6 +31,20 @@ still default, and is not yet distributed via binaries.
31 31 [#775]: https://github.com/CLIUtils/CLI11/pull/775
32 32 [#781]: https://github.com/CLIUtils/CLI11/pull/781
33 33  
  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 +
34 48 ## Version 2.2: Option and Configuration Flexibility
35 49  
36 50 New features include support for output of an empty vector, a summing option
... ...
include/CLI/Version.hpp
... ... @@ -10,7 +10,7 @@
10 10  
11 11 #define CLI11_VERSION_MAJOR 2
12 12 #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"
15 15  
16 16 // [CLI11:version_hpp:end]
... ...