Commit 70f8072f9dd2292fd0b9f9e5f58e279f60483ed3

Authored by Henry Schreiner
Committed by GitHub
1 parent 4ebb25d1

chore: bump version (#658)

* chore: update changelog for 2.1.2

* chore: bump version
.appveyor.yml
1   -version: 2.1.1.{build}
  1 +version: 2.1.2.{build}
2 2  
3 3 branches:
4 4 only:
... ...
CHANGELOG.md
1 1 # Changelog
2 2  
3   -## WIP
4   -
5   -* Use `main` for the main branch of the repository [#657][]
6   -* Bugfix(cmake): Enforce at least C++11 when using CMake target [#656][]
7   -* Build: Don't run doxygen and CTest includes if a submodule [#656][]
8   -* Build: Avoid a warning on CMake 3.22 [#656][]
9   -* Build: Support compiling the tests with an external copy of Catch2 [#653][]
10   -
11   -[#653]: https://github.com/CLIUtils/CLI11/pull/653
12   -[#656]: https://github.com/CLIUtils/CLI11/pull/656
13   -[#657]: https://github.com/CLIUtils/CLI11/pull/657
14   -
15 3 ## Version 2.1: Names and callbacks
16 4  
17 5 The name restrictions for options and subcommands are now much looser, allowing
... ... @@ -45,6 +33,18 @@ is not passed, or every time the option is parsed.
45 33 [#646]: https://github.com/CLIUtils/CLI11/pull/646
46 34 [#647]: https://github.com/CLIUtils/CLI11/pull/647
47 35  
  36 +## Version 2.1.2: Better subproject builds
  37 +
  38 +* Use `main` for the main branch of the repository [#657][]
  39 +* Bugfix(cmake): Enforce at least C++11 when using CMake target [#656][]
  40 +* Build: Don't run doxygen and CTest includes if a submodule [#656][]
  41 +* Build: Avoid a warning on CMake 3.22 [#656][]
  42 +* Build: Support compiling the tests with an external copy of Catch2 [#653][]
  43 +
  44 +[#653]: https://github.com/CLIUtils/CLI11/pull/653
  45 +[#656]: https://github.com/CLIUtils/CLI11/pull/656
  46 +[#657]: https://github.com/CLIUtils/CLI11/pull/657
  47 +
48 48 ## Version 2.0: Simplification
49 49  
50 50 This version focuses on cleaning up deprecated functionality, and some minor
... ...
README.md
... ... @@ -167,7 +167,7 @@ include(FetchContent)
167 167 FetchContent_Declare(
168 168 cli11
169 169 GIT_REPOSITORY https://github.com/CLIUtils/CLI11
170   - GIT_TAG v2.1.1
  170 + GIT_TAG v2.1.2
171 171 )
172 172  
173 173 FetchContent_MakeAvailable(cli11)
... ...
include/CLI/Version.hpp
... ... @@ -10,7 +10,7 @@
10 10  
11 11 #define CLI11_VERSION_MAJOR 2
12 12 #define CLI11_VERSION_MINOR 1
13   -#define CLI11_VERSION_PATCH 1
14   -#define CLI11_VERSION "2.1.1"
  13 +#define CLI11_VERSION_PATCH 2
  14 +#define CLI11_VERSION "2.1.2"
15 15  
16 16 // [CLI11:version_hpp:end]
... ...