Skip to content

Commit 70f8072

Browse files
authored
chore: bump version (#658)
* chore: update changelog for 2.1.2 * chore: bump version
1 parent 4ebb25d commit 70f8072

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

.appveyor.yml

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

33
branches:
44
only:

CHANGELOG.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,5 @@
11
# Changelog
22

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-
153
## Version 2.1: Names and callbacks
164

175
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.
4533
[#646]: https://github.com/CLIUtils/CLI11/pull/646
4634
[#647]: https://github.com/CLIUtils/CLI11/pull/647
4735

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+
4848
## Version 2.0: Simplification
4949

5050
This version focuses on cleaning up deprecated functionality, and some minor

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ include(FetchContent)
167167
FetchContent_Declare(
168168
cli11
169169
GIT_REPOSITORY https://github.com/CLIUtils/CLI11
170-
GIT_TAG v2.1.1
170+
GIT_TAG v2.1.2
171171
)
172172
173173
FetchContent_MakeAvailable(cli11)

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 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"
1515

1616
// [CLI11:version_hpp:end]

0 commit comments

Comments
 (0)