From f19b052974918c93a9f8740eb9ad51839cb12937 Mon Sep 17 00:00:00 2001 From: Henry Fredrick Schreiner Date: Sun, 10 Feb 2019 00:03:45 +0100 Subject: [PATCH] Adding changelog [skip ci] --- CHANGELOG.md | 16 ++++++++++++++++ README.md | 3 ++- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4bfd68c9..705a24af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 This version provides a quick patch for a (correct) warning from GCC 8 for the windows options code. diff --git a/README.md b/README.md index 5ef040e3..5a5a2369 100644 --- a/README.md +++ b/README.md @@ -523,11 +523,12 @@ Significant features and/or improvements to the code were contributed by: - [Stéphane Del Pino](https://github.com/delpinux) - [Mak Kolybabi](https://github.com/mogigoma) - [Paweł Bylica](https://github.com/chfast) -- [Philip Top](https://github.com/phlptp) +- [Philip Top](https://github.com/phlptp) - [ncihneg](https://github.com/ncihneg) - [Fred Helmesjö](https://github.com/helmesjo) +- [Rafi Wiener](https://github.com/rafiw) ## License