diff --git a/CHANGELOG.md b/CHANGELOG.md index 900cd3a..3a9b026 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,8 @@ -## Version 1.4: More feedback (in progress) +## Version 1.4: More feedback * Added `get_parent()` to access the parent from a subcommand * `app.allow_ini_extras()` added to allow extras in INI files [#70] -* Adding install support for CMake [#79], improved support for `find_package` [#83] +* Adding install support for CMake [#79], improved support for `find_package` [#83], [#84] * MakeSingleHeader now works if outside of git [#78] * Double printing of error message fixed [#77] * Descriptions can now be written with `config_to_str` [#66] @@ -10,11 +10,12 @@ * Added `ExistingPath` validator [#73] * Renamed `requires` to `needs` to avoid C++20 keyword [#75], [#82] * Added support for Conan.io [#83] -* Lexical cast is now more strict than before [#68] +* Lexical cast is now more strict than before [#68] and fails on overflow [#84] [#70]: https://github.com/CLIUtils/CLI11/issues/70 [#75]: https://github.com/CLIUtils/CLI11/issues/75 +[#84]: https://github.com/CLIUtils/CLI11/pull/84 [#83]: https://github.com/CLIUtils/CLI11/pull/83 [#82]: https://github.com/CLIUtils/CLI11/pull/82 [#79]: https://github.com/CLIUtils/CLI11/pull/79 diff --git a/README.md b/README.md index acdc1ae..bb86720 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,7 @@ [![License: BSD][license-badge]](./LICENSE) [![Latest release][releases-badge]][Github Releases] [![DOI][DOI-badge]][DOI-link] +[![Conan.io][conan-badge]][conan-link] [Documentation][GitBook] • [API Reference][api-docs] • @@ -396,6 +397,8 @@ CLI11 was developed at the [University of Cincinnati] to support of the [GooFit] [gitter-badge]: https://badges.gitter.im/CLI11gitter/Lobby.svg [gitter]: https://gitter.im/CLI11gitter/Lobby [license-badge]: https://img.shields.io/badge/License-BSD-blue.svg +[conan-badge]: https://api.bintray.com/packages/cliutilsa/cli11/cli11%3Acli11/images/download.svg +[conan-link]: https://bintray.com/cliutils/cli11/cli11%3Acli11/_latestVersion [Github Releases]: https://github.com/CLIUtils/CLI11/releases [Github Issues]: https://github.com/CLIUtils/CLI11/issues [Github Pull Requests]: https://github.com/CLIUtils/CLI11/pulls diff --git a/include/CLI/Version.hpp b/include/CLI/Version.hpp index 6c55524..40abb16 100644 --- a/include/CLI/Version.hpp +++ b/include/CLI/Version.hpp @@ -8,8 +8,8 @@ namespace CLI { // Note that all code in CLI11 must be in a namespace, even if it just a define. #define CLI11_VERSION_MAJOR 1 -#define CLI11_VERSION_MINOR 3 +#define CLI11_VERSION_MINOR 4 #define CLI11_VERSION_PATCH 0 -#define CLI11_VERSION "1.3.0" +#define CLI11_VERSION "1.4.0" } // namespace CLI