From 70f8072f9dd2292fd0b9f9e5f58e279f60483ed3 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Mon, 18 Oct 2021 10:14:21 -0400 Subject: [PATCH] chore: bump version (#658) * chore: update changelog for 2.1.2 * chore: bump version --- .appveyor.yml | 2 +- CHANGELOG.md | 24 ++++++++++++------------ README.md | 2 +- include/CLI/Version.hpp | 4 ++-- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index db1d6e829..59bb8326b 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,4 +1,4 @@ -version: 2.1.1.{build} +version: 2.1.2.{build} branches: only: diff --git a/CHANGELOG.md b/CHANGELOG.md index d5f7cff62..e35ca3867 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 763f48a6c..ad1ac1e97 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/include/CLI/Version.hpp b/include/CLI/Version.hpp index c989ae86d..4bc79a773 100644 --- a/include/CLI/Version.hpp +++ b/include/CLI/Version.hpp @@ -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]