Commit 826a2784b39889a3b89b594bf2efedf8e12284d5

Authored by Henry Fredrick Schreiner
1 parent 38340c06

Preparing for version 1.5

README.md
... ... @@ -241,7 +241,7 @@ There are several options that are supported on the main app and subcommands. Th
241 241 * `.add_subcommand(name, description="")` Add a subcommand, returns a pointer to the internally stored subcommand.
242 242 * `.got_subcommand(App_or_name)`: Check to see if a subcommand was received on the command line
243 243 * `.get_subcommands()`: The list of subcommands given on the command line
244   -* `.get_parent()`: Get the parent App or nullptr if called on master App **Coming in version 1.4**
  244 +* `.get_parent()`: Get the parent App or nullptr if called on master App
245 245 * `.parsed()`: True if this subcommand was given on the command line
246 246 * `.set_callback(void() function)`: Set the callback that runs at the end of parsing. The options have already run at this point.
247 247 * `.allow_extras()`: Do not throw an error if extra arguments are left over
... ...
include/CLI/Version.hpp
... ... @@ -8,8 +8,8 @@ namespace CLI {
8 8 // Note that all code in CLI11 must be in a namespace, even if it just a define.
9 9  
10 10 #define CLI11_VERSION_MAJOR 1
11   -#define CLI11_VERSION_MINOR 4
  11 +#define CLI11_VERSION_MINOR 5
12 12 #define CLI11_VERSION_PATCH 0
13   -#define CLI11_VERSION "1.4.0"
  13 +#define CLI11_VERSION "1.5.0"
14 14  
15 15 } // namespace CLI
... ...