Skip to content

Commit 411364a

Browse files
committed
Add conversion note to changelog
1 parent 97f5730 commit 411364a

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,17 @@ Passing the same subcommand multiple times is better supported. Several new feat
1313
* Subcommands now track how many times they were parsed in a parsing process. `count()` with no arguments will return the number of times a subcommand was encountered. [#179]
1414
* Parsing is now done in phases: `shortcurcuits`, `ini`, `env`, `callbacks`, and `requirements`; all subcommands complete a phase before moving on. [#179]
1515
* Calling parse multiple times is now officially supported without `clear` (automatic). [#179]
16-
* Dropped the mostly undocumented `short_curcuit` property, as help flag parsing is a bit more complex, and the default callback behavior of options now works properly. [#179]
16+
* Dropped the mostly undocumented `short_circuit` property, as help flag parsing is a bit more complex, and the default callback behavior of options now works properly. [#179]
1717
* Use the standard `BUILD_TESTING` over `CLI11_TESTING` if defined (`CLI11_TESTING` may eventually be removed) [#183]
1818
* Cleanup warnings [#191]
1919
* Remove deprecated names: `set_footer`, `set_name`, `set_callback`, and `set_type_name`. Use without the `set_` instead. [#192]
2020

21+
> ### Converting from CLI11 1.6:
22+
>
23+
> * `->short_circuit()` is no longer needed, just remove it if you were using it - raising an exception will happen in the proper place now without it.
24+
> * `->add_set*` becomes `->add_mutable_set*` if you were using the editable set feature
25+
> * `footer`, `name`, `callback`, and `type_name` must be used instead of the `set_*` versions (deprecated previously).
26+
2127
[#179]: https://github.com/CLIUtils/CLI11/pull/179
2228
[#183]: https://github.com/CLIUtils/CLI11/pull/183
2329
[#185]: https://github.com/CLIUtils/CLI11/pull/185

0 commit comments

Comments
 (0)