Commit e32656e46d0dba79a747a25637a8b38a14a12a8b

Authored by Henry Fredrick Schreiner
1 parent 023ec916

Version bump

README.md
... ... @@ -17,7 +17,7 @@
17 17  
18 18 CLI11 provides all the features you expect in a powerful command line parser, with a beautiful, minimal syntax and no dependencies beyond C++11. It is header only, and comes in a single file form for easy inclusion in projects. It is easy to use for small projects, but powerful enough for complex command line projects, and can be customized for frameworks.
19 19 It is tested on [Travis] and [AppVeyor], and is being included in the [GooFit GPU fitting framework][GooFit]. It was inspired by [`plumbum.cli`][Plumbum] for Python. CLI11 has a user friendly introduction in this README, a more in-depth tutorial [GitBook], as well as [API documentation][api-docs] generated by Travis.
20   -See the [changelog](./CHANGELOG.md) or [GitHub Releases] for details for current and past releases. Also see the [Version 1.0 post], [Version 1.3 post], or [[Version 1.6 post] for more information.
  20 +See the [changelog](./CHANGELOG.md) or [GitHub Releases] for details for current and past releases. Also see the [Version 1.0 post], [Version 1.3 post], or [Version 1.6 post] for more information.
21 21  
22 22 You can be notified when new releases are made by subscribing to https://github.com/CLIUtils/CLI11/releases.atom on an RSS reader, like Feedly.
23 23  
... ...
include/CLI/Version.hpp
... ... @@ -6,8 +6,8 @@
6 6 // [CLI11:verbatim]
7 7  
8 8 #define CLI11_VERSION_MAJOR 1
9   -#define CLI11_VERSION_MINOR 5
10   -#define CLI11_VERSION_PATCH 4
11   -#define CLI11_VERSION "1.5.4"
  9 +#define CLI11_VERSION_MINOR 6
  10 +#define CLI11_VERSION_PATCH 0
  11 +#define CLI11_VERSION "1.6.0"
12 12  
13 13 // [CLI11:verbatim]
... ...