Skip to content

Commit

Permalink
chore: bump version (#658)
Browse files Browse the repository at this point in the history
* chore: update changelog for 2.1.2

* chore: bump version
  • Loading branch information
henryiii authored Oct 18, 2021
1 parent 4ebb25d commit 70f8072
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 2.1.1.{build}
version: 2.1.2.{build}

branches:
only:
Expand Down
24 changes: 12 additions & 12 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions include/CLI/Version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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]

0 comments on commit 70f8072

Please sign in to comment.