Commit 169e4ec687ce6bc3a514d6309dcaa7f978b86dfc
1 parent
cf6a99fa
Adding minor updates to docs to point at the new version
[skip ci]
Showing
2 changed files
with
14 additions
and
3 deletions
.github/CONTRIBUTING.md
| ... | ... | @@ -25,6 +25,17 @@ Note that the style check is really just: |
| 25 | 25 | git ls-files -- '.cpp' '.hpp' | xargs clang-format -i -style=file |
| 26 | 26 | ``` |
| 27 | 27 | |
| 28 | -And, if you want to always use it, feel free to install the git hook provided in stripts. | |
| 28 | +And, if you want to always use it, feel free to install the git hook provided in scripts. | |
| 29 | 29 | |
| 30 | +## For developers releasing to Conan.io | |
| 30 | 31 | |
| 32 | +The steps to make a Conan.io release are: | |
| 33 | + | |
| 34 | +```bash | |
| 35 | +conan delete '*' # optional, I like to be clean | |
| 36 | + | |
| 37 | +conan create . CLIUtils/stable | |
| 38 | +conan upload "*" -r cli11 --all | |
| 39 | +``` | |
| 40 | + | |
| 41 | +Here I've assumed that the remote is `cli11`. | ... | ... |
README.md
| ... | ... | @@ -10,7 +10,7 @@ |
| 10 | 10 | [Documentation][GitBook] • |
| 11 | 11 | [API Reference][api-docs] • |
| 12 | 12 | [What's new](./CHANGELOG.md) • |
| 13 | -[Try CLI11 1.4 online][wandbox-link] | |
| 13 | +[Try CLI11 1.5 online][wandbox-link] | |
| 14 | 14 | |
| 15 | 15 | # CLI11: Command line parser for C++11 |
| 16 | 16 | |
| ... | ... | @@ -439,7 +439,7 @@ CLI11 was developed at the [University of Cincinnati] to support of the [GooFit] |
| 439 | 439 | [Version 1.0 post]: https://iscinumpy.gitlab.io/post/announcing-cli11-10/ |
| 440 | 440 | [Version 1.3 post]: https://iscinumpy.gitlab.io/post/announcing-cli11-13/ |
| 441 | 441 | [wandbox-online]: https://img.shields.io/badge/try%20it-online-orange.svg |
| 442 | -[wandbox-link]: https://wandbox.org/permlink/g7tRkuU8xY3aTIVP | |
| 442 | +[wandbox-link]: https://wandbox.org/permlink/3a2C5qg6vUjSSpr7 | |
| 443 | 443 | [releases-badge]: https://img.shields.io/github/release/CLIUtils/CLI11.svg |
| 444 | 444 | [cli11-po-compare]: https://iscinumpy.gitlab.io/post/comparing-cli11-and-boostpo/ |
| 445 | 445 | [DIANA slides]: https://indico.cern.ch/event/619465/contributions/2507949/attachments/1448567/2232649/20170424-diana-2.pdf | ... | ... |