mirror of
https://github.com/CLIUtils/CLI11.git
synced 2025-05-01 13:13:53 +00:00
Moving check_style
This commit is contained in:
parent
fa5da7deaa
commit
366716eebc
@ -65,7 +65,7 @@ script:
|
|||||||
- |
|
- |
|
||||||
if [ -n "$CHECK_STYLE" ]
|
if [ -n "$CHECK_STYLE" ]
|
||||||
then
|
then
|
||||||
.ci/check_style.sh
|
scripts/check_style.sh
|
||||||
else
|
else
|
||||||
.ci/travis.sh
|
.ci/travis.sh
|
||||||
fi
|
fi
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
## Version 1.3 (in progress)
|
## Version 1.3 (in progress)
|
||||||
|
|
||||||
|
* Reworked the way defaults are set and inherited; explicit control given to user with `->option_defaults()` [#48](https://github.com/CLIUtils/CLI11/pull/48)
|
||||||
* `parse` no longer returns (so `CLI11_PARSE` is always usable) [#37](https://github.com/CLIUtils/CLI11/pull/37)
|
* `parse` no longer returns (so `CLI11_PARSE` is always usable) [#37](https://github.com/CLIUtils/CLI11/pull/37)
|
||||||
* Added `remaining()` and `remaining_size()` [#37](https://github.com/CLIUtils/CLI11/pull/37)
|
* Added `remaining()` and `remaining_size()` [#37](https://github.com/CLIUtils/CLI11/pull/37)
|
||||||
* `allow_extras` and `prefix_command` are now valid on subcommands [#37](https://github.com/CLIUtils/CLI11/pull/37)
|
* `allow_extras` and `prefix_command` are now valid on subcommands [#37](https://github.com/CLIUtils/CLI11/pull/37)
|
||||||
@ -8,6 +10,7 @@
|
|||||||
* Help flags are easier to customize [#43](https://github.com/CLIUtils/CLI11/pull/43)
|
* Help flags are easier to customize [#43](https://github.com/CLIUtils/CLI11/pull/43)
|
||||||
* Subcommand now support groups [#46](https://github.com/CLIUtils/CLI11/pull/46)
|
* Subcommand now support groups [#46](https://github.com/CLIUtils/CLI11/pull/46)
|
||||||
* `CLI::RuntimeError` added, for easy exit with error codes [#45](https://github.com/CLIUtils/CLI11/pull/45)
|
* `CLI::RuntimeError` added, for easy exit with error codes [#45](https://github.com/CLIUtils/CLI11/pull/45)
|
||||||
|
* The clang-format script is now no longer "hidden" [#48](https://github.com/CLIUtils/CLI11/pull/48)
|
||||||
|
|
||||||
|
|
||||||
## Version 1.2
|
## Version 1.2
|
||||||
|
@ -17,5 +17,4 @@ In general, make sure the addition is well thought out and does not increase the
|
|||||||
|
|
||||||
* Once you make the PR, tests will run to make sure your code works on all supported platforms
|
* Once you make the PR, tests will run to make sure your code works on all supported platforms
|
||||||
* The test coverage is also measured, and that should remain 100%
|
* The test coverage is also measured, and that should remain 100%
|
||||||
* Formatting should be done with clang-format, otherwise the format check will not pass. However, it is trivial to apply this to your PR, so don't worry about this check
|
* Formatting should be done with clang-format, otherwise the format check will not pass. However, it is trivial to apply this to your PR, so don't worry about this check. If you do have clang-format, just run `scripts/check_style.sh`
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user