Commit 366716eebc997bd942445a31e5be9f302b4bfb3a

Authored by Henry Fredrick Schreiner
Committed by Henry Schreiner
1 parent fa5da7de

Moving check_style

.travis.yml
@@ -65,7 +65,7 @@ script: @@ -65,7 +65,7 @@ script:
65 - | 65 - |
66 if [ -n "$CHECK_STYLE" ] 66 if [ -n "$CHECK_STYLE" ]
67 then 67 then
68 - .ci/check_style.sh 68 + scripts/check_style.sh
69 else 69 else
70 .ci/travis.sh 70 .ci/travis.sh
71 fi 71 fi
CHANGELOG.md
1 ## Version 1.3 (in progress) 1 ## Version 1.3 (in progress)
  2 +
  3 +* Reworked the way defaults are set and inherited; explicit control given to user with `->option_defaults()` [#48](https://github.com/CLIUtils/CLI11/pull/48)
2 * `parse` no longer returns (so `CLI11_PARSE` is always usable) [#37](https://github.com/CLIUtils/CLI11/pull/37) 4 * `parse` no longer returns (so `CLI11_PARSE` is always usable) [#37](https://github.com/CLIUtils/CLI11/pull/37)
3 * Added `remaining()` and `remaining_size()` [#37](https://github.com/CLIUtils/CLI11/pull/37) 5 * Added `remaining()` and `remaining_size()` [#37](https://github.com/CLIUtils/CLI11/pull/37)
4 * `allow_extras` and `prefix_command` are now valid on subcommands [#37](https://github.com/CLIUtils/CLI11/pull/37) 6 * `allow_extras` and `prefix_command` are now valid on subcommands [#37](https://github.com/CLIUtils/CLI11/pull/37)
@@ -8,6 +10,7 @@ @@ -8,6 +10,7 @@
8 * Help flags are easier to customize [#43](https://github.com/CLIUtils/CLI11/pull/43) 10 * Help flags are easier to customize [#43](https://github.com/CLIUtils/CLI11/pull/43)
9 * Subcommand now support groups [#46](https://github.com/CLIUtils/CLI11/pull/46) 11 * Subcommand now support groups [#46](https://github.com/CLIUtils/CLI11/pull/46)
10 * `CLI::RuntimeError` added, for easy exit with error codes [#45](https://github.com/CLIUtils/CLI11/pull/45) 12 * `CLI::RuntimeError` added, for easy exit with error codes [#45](https://github.com/CLIUtils/CLI11/pull/45)
  13 +* The clang-format script is now no longer "hidden" [#48](https://github.com/CLIUtils/CLI11/pull/48)
11 14
12 15
13 ## Version 1.2 16 ## Version 1.2
CONTRIBUTING.md
@@ -17,5 +17,4 @@ In general, make sure the addition is well thought out and does not increase the @@ -17,5 +17,4 @@ In general, make sure the addition is well thought out and does not increase the
17 17
18 * Once you make the PR, tests will run to make sure your code works on all supported platforms 18 * Once you make the PR, tests will run to make sure your code works on all supported platforms
19 * The test coverage is also measured, and that should remain 100% 19 * The test coverage is also measured, and that should remain 100%
20 -* 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  
21 - 20 +* 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`
.ci/check_style.sh renamed to scripts/check_style.sh