Skip to content

Commit a66ae41

Browse files
authored
chore: bump version (#782)
Signed-off-by: Henry Schreiner <[email protected]>
1 parent 9158ce6 commit a66ae41

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 2.2.0.{build}
1+
version: 2.3.0.{build}
22

33
branches:
44
only:

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ Before parsing, you can set the following options:
530530
are `CLI::MultiOptionPolicy::Throw`, `CLI::MultiOptionPolicy::Throw`,
531531
`CLI::MultiOptionPolicy::TakeLast`, `CLI::MultiOptionPolicy::TakeFirst`,
532532
`CLI::MultiOptionPolicy::Join`, `CLI::MultiOptionPolicy::TakeAll`, and
533-
`CLI::MultiOptionPolicy::Sum` 🚧.
533+
`CLI::MultiOptionPolicy::Sum` 🆕.
534534
- `->check(std::string(const std::string &), validator_name="",validator_description="")`:
535535
Define a check function. The function should return a non empty string with
536536
the error message if the check fails
@@ -571,7 +571,7 @@ Before parsing, you can set the following options:
571571
- `->trigger_on_parse()`: If set, causes the callback and all associated
572572
validation checks for the option to be executed when the option value is
573573
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.
575575

576576
These options return the `Option` pointer, so you can chain them together, and
577577
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
658658
- `CLI::ExistingDirectory`: Requires that the directory exists.
659659
- `CLI::ExistingPath`: Requires that the path (file or directory) exists.
660660
- `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
662662
exists either directly or in a default path and update the path appropriately.
663663
See [Transforming Validators](#transforming-validators) for more details
664664
- `CLI::Range(min,max)`: Requires that the option be between min and max (make

include/CLI/Version.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
// [CLI11:version_hpp:verbatim]
1010

1111
#define CLI11_VERSION_MAJOR 2
12-
#define CLI11_VERSION_MINOR 2
12+
#define CLI11_VERSION_MINOR 3
1313
#define CLI11_VERSION_PATCH 0
14-
#define CLI11_VERSION "2.2.0"
14+
#define CLI11_VERSION "2.3.0"
1515

1616
// [CLI11:version_hpp:end]

0 commit comments

Comments
 (0)