Commit a66ae4145779c56dc0f9f98a631656417dd77de8

Authored by Henry Schreiner
Committed by GitHub
1 parent 9158ce65

chore: bump version (#782)

Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
.appveyor.yml
1 -version: 2.2.0.{build} 1 +version: 2.3.0.{build}
2 2
3 branches: 3 branches:
4 only: 4 only:
README.md
@@ -530,7 +530,7 @@ Before parsing, you can set the following options: @@ -530,7 +530,7 @@ Before parsing, you can set the following options:
530 are `CLI::MultiOptionPolicy::Throw`, `CLI::MultiOptionPolicy::Throw`, 530 are `CLI::MultiOptionPolicy::Throw`, `CLI::MultiOptionPolicy::Throw`,
531 `CLI::MultiOptionPolicy::TakeLast`, `CLI::MultiOptionPolicy::TakeFirst`, 531 `CLI::MultiOptionPolicy::TakeLast`, `CLI::MultiOptionPolicy::TakeFirst`,
532 `CLI::MultiOptionPolicy::Join`, `CLI::MultiOptionPolicy::TakeAll`, and 532 `CLI::MultiOptionPolicy::Join`, `CLI::MultiOptionPolicy::TakeAll`, and
533 - `CLI::MultiOptionPolicy::Sum` ๐Ÿšง. 533 + `CLI::MultiOptionPolicy::Sum` ๐Ÿ†•.
534 - `->check(std::string(const std::string &), validator_name="",validator_description="")`: 534 - `->check(std::string(const std::string &), validator_name="",validator_description="")`:
535 Define a check function. The function should return a non empty string with 535 Define a check function. The function should return a non empty string with
536 the error message if the check fails 536 the error message if the check fails
@@ -571,7 +571,7 @@ Before parsing, you can set the following options: @@ -571,7 +571,7 @@ Before parsing, you can set the following options:
571 - `->trigger_on_parse()`: If set, causes the callback and all associated 571 - `->trigger_on_parse()`: If set, causes the callback and all associated
572 validation checks for the option to be executed when the option value is 572 validation checks for the option to be executed when the option value is
573 parsed vs. at the end of all parsing. This could cause the callback to be 573 parsed vs. at the end of all parsing. This could cause the callback to be
574 - executed multiple times. Also works with positional options ๐Ÿ†•. 574 + executed multiple times. Also works with positional options.
575 575
576 These options return the `Option` pointer, so you can chain them together, and 576 These options return the `Option` pointer, so you can chain them together, and
577 even skip storing the pointer entirely. The `each` function takes any function 577 even skip storing the pointer entirely. The `each` function takes any function
@@ -658,7 +658,7 @@ CLI11 has several Validators built-in that perform some common checks @@ -658,7 +658,7 @@ CLI11 has several Validators built-in that perform some common checks
658 - `CLI::ExistingDirectory`: Requires that the directory exists. 658 - `CLI::ExistingDirectory`: Requires that the directory exists.
659 - `CLI::ExistingPath`: Requires that the path (file or directory) exists. 659 - `CLI::ExistingPath`: Requires that the path (file or directory) exists.
660 - `CLI::NonexistentPath`: Requires that the path does not exist. 660 - `CLI::NonexistentPath`: Requires that the path does not exist.
661 -- `CLI::FileOnDefaultPath`: ๐Ÿ†• Best used as a transform, Will check that a file 661 +- `CLI::FileOnDefaultPath`: Best used as a transform, Will check that a file
662 exists either directly or in a default path and update the path appropriately. 662 exists either directly or in a default path and update the path appropriately.
663 See [Transforming Validators](#transforming-validators) for more details 663 See [Transforming Validators](#transforming-validators) for more details
664 - `CLI::Range(min,max)`: Requires that the option be between min and max (make 664 - `CLI::Range(min,max)`: Requires that the option be between min and max (make
include/CLI/Version.hpp
@@ -9,8 +9,8 @@ @@ -9,8 +9,8 @@
9 // [CLI11:version_hpp:verbatim] 9 // [CLI11:version_hpp:verbatim]
10 10
11 #define CLI11_VERSION_MAJOR 2 11 #define CLI11_VERSION_MAJOR 2
12 -#define CLI11_VERSION_MINOR 2 12 +#define CLI11_VERSION_MINOR 3
13 #define CLI11_VERSION_PATCH 0 13 #define CLI11_VERSION_PATCH 0
14 -#define CLI11_VERSION "2.2.0" 14 +#define CLI11_VERSION "2.3.0"
15 15
16 // [CLI11:version_hpp:end] 16 // [CLI11:version_hpp:end]