1
0
mirror of https://github.com/CLIUtils/CLI11.git synced 2025-05-03 14:03:52 +00:00

chore: bump version (#658)

* chore: update changelog for 2.1.2

* chore: bump version
This commit is contained in:
Henry Schreiner 2021-10-18 10:14:21 -04:00 committed by GitHub
parent 4ebb25d10f
commit 70f8072f9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 16 additions and 16 deletions

View File

@ -1,4 +1,4 @@
version: 2.1.1.{build}
version: 2.1.2.{build}
branches:
only:

View File

@ -1,17 +1,5 @@
# Changelog
## WIP
* Use `main` for the main branch of the repository [#657][]
* Bugfix(cmake): Enforce at least C++11 when using CMake target [#656][]
* Build: Don't run doxygen and CTest includes if a submodule [#656][]
* Build: Avoid a warning on CMake 3.22 [#656][]
* Build: Support compiling the tests with an external copy of Catch2 [#653][]
[#653]: https://github.com/CLIUtils/CLI11/pull/653
[#656]: https://github.com/CLIUtils/CLI11/pull/656
[#657]: https://github.com/CLIUtils/CLI11/pull/657
## Version 2.1: Names and callbacks
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.
[#646]: https://github.com/CLIUtils/CLI11/pull/646
[#647]: https://github.com/CLIUtils/CLI11/pull/647
## Version 2.1.2: Better subproject builds
* Use `main` for the main branch of the repository [#657][]
* Bugfix(cmake): Enforce at least C++11 when using CMake target [#656][]
* Build: Don't run doxygen and CTest includes if a submodule [#656][]
* Build: Avoid a warning on CMake 3.22 [#656][]
* Build: Support compiling the tests with an external copy of Catch2 [#653][]
[#653]: https://github.com/CLIUtils/CLI11/pull/653
[#656]: https://github.com/CLIUtils/CLI11/pull/656
[#657]: https://github.com/CLIUtils/CLI11/pull/657
## Version 2.0: Simplification
This version focuses on cleaning up deprecated functionality, and some minor

View File

@ -167,7 +167,7 @@ include(FetchContent)
FetchContent_Declare(
cli11
GIT_REPOSITORY https://github.com/CLIUtils/CLI11
GIT_TAG v2.1.1
GIT_TAG v2.1.2
)
FetchContent_MakeAvailable(cli11)

View File

@ -10,7 +10,7 @@
#define CLI11_VERSION_MAJOR 2
#define CLI11_VERSION_MINOR 1
#define CLI11_VERSION_PATCH 1
#define CLI11_VERSION "2.1.1"
#define CLI11_VERSION_PATCH 2
#define CLI11_VERSION "2.1.2"
// [CLI11:version_hpp:end]