Skip to content

Commit

Permalink
Bump version to 1.9.0 (#408)
Browse files Browse the repository at this point in the history
* Bump version to 1.9.0

* Include CMake mention
  • Loading branch information
henryiii authored Jan 19, 2020
1 parent 6cc757f commit dd0d8e4
Show file tree
Hide file tree
Showing 6 changed files with 112 additions and 100 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 1.8.0.{build}
version: 1.9.0.{build}

branches:
only:
Expand Down
10 changes: 9 additions & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,12 @@ yarn all-contributors add username code,bug

## For maintainers: Making a release

Remember to replace the emoji in the readme, being careful not to replace the ones in all-contributors.
Remember to replace the emoji in the readme, being careful not to replace the ones in all-contributors if any overlap.

Steps:
* Update changelog if needed
* Update the version in `.appveyor.yml` and `include/CLI/Version.hpp`.
* Find and replace in README:
* Replace " 🆕" and "🆕 " with "" (ignores the description line)
* Check for `\/\/$` (vi syntax) to catch leftover `// 🆕`
* Replace "🚧" with "🆕" (manually ignore the description line)
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ configuration options were added to facilitate a wider variety of apps. GCC
* Backend: File checking updates [#341][]
* Backend: Using pre-commit to format, checked in GitHub Actions [#336][]
* Backend: Clang-tidy checked again, CMake option now `CL11_CLANG_TIDY` [#390][]
* Backend: Warning cleanup, more checks from klocwork [#350][], Effective C++ [#354][], clang-tidy [#360][], CUDA NVCC [#365][], cross compile [#373][], and sign conversion [#382][]
* Backend: Warning cleanup, more checks from klocwork [#350][], Effective C++ [#354][], clang-tidy [#360][], CUDA NVCC [#365][], cross compile [#373][], sign conversion [#382][], and cpplint [#400][]
* Docs: CLI11 Tutorial now hosted in the same repository [#304][], [#318][], [#374][]
* Bugfix: Fixed undefined behavior in `checked_multiply` [#290][]
* Bugfix: `->check()` was adding the name to the wrong validator [#320][]
Expand All @@ -34,6 +34,7 @@ configuration options were added to facilitate a wider variety of apps. GCC
* Bugfix: Enum conversion no longer broken if stream operator added [#348][]
* Build: The meson build system supported [#299][]
* Build: GCC 4.7 is no longer supported, due mostly to GoogleTest. GCC 4.8+ is now required. [#160][]
* Build: Restructured significant portions of CMake build system [#394][]

> ### Converting from CLI11 1.8:
>
Expand Down Expand Up @@ -77,6 +78,8 @@ configuration options were added to facilitate a wider variety of apps. GCC
[#374]: https://github.com/CLIUtils/CLI11/pull/374
[#382]: https://github.com/CLIUtils/CLI11/pull/382
[#390]: https://github.com/CLIUtils/CLI11/pull/390
[#394]: https://github.com/CLIUtils/CLI11/pull/394
[#400]: https://github.com/CLIUtils/CLI11/pull/400


## Version 1.8: Transformers, default strings, and flags
Expand Down
Loading

0 comments on commit dd0d8e4

Please sign in to comment.