1
0
mirror of https://github.com/CLIUtils/CLI11.git synced 2025-05-03 05:53:52 +00:00

Adding changelog

[skip ci]
This commit is contained in:
Henry Fredrick Schreiner 2019-02-10 00:03:45 +01:00
parent c8bd97156b
commit f19b052974
2 changed files with 18 additions and 1 deletions

View File

@ -1,3 +1,19 @@
## Version 1.8: Flags and Sets
This version adds inverted flags, which can cancel or reduce the count of flags, and can also support basic number assignment. A new `add_option_fn` lets you more easily program CLI11 options with the types you choose. Vector options now support a custom separator. Apps can now be composed with unnamed subcommand support.
* Much more powerful flags with different values [#211]
* Support for composable unnamed subcommands [#216]
* Custom vector separator [#209], [#221]
* Validators added for IP4 addresses and positive numbers [#210]
[#209]: https://github.com/CLIUtils/CLI11/pull/209
[#210]: https://github.com/CLIUtils/CLI11/pull/210
[#211]: https://github.com/CLIUtils/CLI11/pull/211
[#216]: https://github.com/CLIUtils/CLI11/pull/216
[#221]: https://github.com/CLIUtils/CLI11/pull/221
## Version 1.7.1: Quick patch ## Version 1.7.1: Quick patch
This version provides a quick patch for a (correct) warning from GCC 8 for the windows options code. This version provides a quick patch for a (correct) warning from GCC 8 for the windows options code.

View File

@ -523,11 +523,12 @@ Significant features and/or improvements to the code were contributed by:
- [Stéphane Del Pino](https://github.com/delpinux) - [Stéphane Del Pino](https://github.com/delpinux)
- [Mak Kolybabi](https://github.com/mogigoma) - [Mak Kolybabi](https://github.com/mogigoma)
- [Paweł Bylica](https://github.com/chfast) - [Paweł Bylica](https://github.com/chfast)
- [Philip Top](https://github.com/phlptp) - [Philip Top](https://github.com/phlptp) <!-- Major features in 1.7 and 1.8>
- [almikhayl](https://github.com/almikhayl) - [almikhayl](https://github.com/almikhayl)
- [nurelin](https://github.com/nurelin) <!-- help_all in message --> - [nurelin](https://github.com/nurelin) <!-- help_all in message -->
- [ncihneg](https://github.com/ncihneg) <!-- Quoting strings in INI generation --> - [ncihneg](https://github.com/ncihneg) <!-- Quoting strings in INI generation -->
- [Fred Helmesjö](https://github.com/helmesjo) <!-- `->description()` --> - [Fred Helmesjö](https://github.com/helmesjo) <!-- `->description()` -->
- [Rafi Wiener](https://github.com/rafiw) <!-- INI, +ive validators and vector separators -->
## License ## License