From 826a2784b39889a3b89b594bf2efedf8e12284d5 Mon Sep 17 00:00:00 2001 From: Henry Fredrick Schreiner Date: Mon, 9 Apr 2018 13:45:37 +0200 Subject: [PATCH] Preparing for version 1.5 --- README.md | 2 +- include/CLI/Version.hpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f9eaaf9..cd8edfd 100644 --- a/README.md +++ b/README.md @@ -241,7 +241,7 @@ There are several options that are supported on the main app and subcommands. Th * `.add_subcommand(name, description="")` Add a subcommand, returns a pointer to the internally stored subcommand. * `.got_subcommand(App_or_name)`: Check to see if a subcommand was received on the command line * `.get_subcommands()`: The list of subcommands given on the command line -* `.get_parent()`: Get the parent App or nullptr if called on master App **Coming in version 1.4** +* `.get_parent()`: Get the parent App or nullptr if called on master App * `.parsed()`: True if this subcommand was given on the command line * `.set_callback(void() function)`: Set the callback that runs at the end of parsing. The options have already run at this point. * `.allow_extras()`: Do not throw an error if extra arguments are left over diff --git a/include/CLI/Version.hpp b/include/CLI/Version.hpp index 40abb16..009b3f8 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 4 +#define CLI11_VERSION_MINOR 5 #define CLI11_VERSION_PATCH 0 -#define CLI11_VERSION "1.4.0" +#define CLI11_VERSION "1.5.0" } // namespace CLI -- libgit2 0.21.4