Commit a66ae4145779c56dc0f9f98a631656417dd77de8
Committed by
GitHub
1 parent
9158ce65
chore: bump version (#782)
Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
Showing
3 changed files
with
6 additions
and
6 deletions
.appveyor.yml
README.md
| ... | ... | @@ -530,7 +530,7 @@ Before parsing, you can set the following options: |
| 530 | 530 | are `CLI::MultiOptionPolicy::Throw`, `CLI::MultiOptionPolicy::Throw`, |
| 531 | 531 | `CLI::MultiOptionPolicy::TakeLast`, `CLI::MultiOptionPolicy::TakeFirst`, |
| 532 | 532 | `CLI::MultiOptionPolicy::Join`, `CLI::MultiOptionPolicy::TakeAll`, and |
| 533 | - `CLI::MultiOptionPolicy::Sum` ๐ง. | |
| 533 | + `CLI::MultiOptionPolicy::Sum` ๐. | |
| 534 | 534 | - `->check(std::string(const std::string &), validator_name="",validator_description="")`: |
| 535 | 535 | Define a check function. The function should return a non empty string with |
| 536 | 536 | the error message if the check fails |
| ... | ... | @@ -571,7 +571,7 @@ Before parsing, you can set the following options: |
| 571 | 571 | - `->trigger_on_parse()`: If set, causes the callback and all associated |
| 572 | 572 | validation checks for the option to be executed when the option value is |
| 573 | 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 | 576 | These options return the `Option` pointer, so you can chain them together, and |
| 577 | 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 | 658 | - `CLI::ExistingDirectory`: Requires that the directory exists. |
| 659 | 659 | - `CLI::ExistingPath`: Requires that the path (file or directory) exists. |
| 660 | 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 | 662 | exists either directly or in a default path and update the path appropriately. |
| 663 | 663 | See [Transforming Validators](#transforming-validators) for more details |
| 664 | 664 | - `CLI::Range(min,max)`: Requires that the option be between min and max (make | ... | ... |
include/CLI/Version.hpp
| ... | ... | @@ -9,8 +9,8 @@ |
| 9 | 9 | // [CLI11:version_hpp:verbatim] |
| 10 | 10 | |
| 11 | 11 | #define CLI11_VERSION_MAJOR 2 |
| 12 | -#define CLI11_VERSION_MINOR 2 | |
| 12 | +#define CLI11_VERSION_MINOR 3 | |
| 13 | 13 | #define CLI11_VERSION_PATCH 0 |
| 14 | -#define CLI11_VERSION "2.2.0" | |
| 14 | +#define CLI11_VERSION "2.3.0" | |
| 15 | 15 | |
| 16 | 16 | // [CLI11:version_hpp:end] | ... | ... |