From 2ec9cfb7f949f8cc7e438470f1ab22630e3e4a98 Mon Sep 17 00:00:00 2001 From: Jesse Szwedko Date: Mon, 27 Jun 2016 22:28:27 -0700 Subject: [PATCH 1/2] Add missing fixes to `CHANGELOG.md` --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d975be7..4744a5a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ **ATTN**: This project uses [semantic versioning](http://semver.org/). ## [Unreleased] + ### Added - `./runtests` test runner with coverage tracking by default - testing on OS X @@ -16,6 +17,9 @@ ### Fixed - Printing of command aliases in help text - Printing of visible flags for both struct and struct pointer flags +- Display the `help` subcommand when using `CommandCategories` +- No longer swallows `panic`s that occur within the `Action`s themselves when + detecting the signature of the `Action` field ## [1.17.0] - 2016-05-09 ### Added From 1efa31f08b9333f1bd4882d61f9d668a70cd902e Mon Sep 17 00:00:00 2001 From: Jesse Szwedko Date: Mon, 27 Jun 2016 22:30:56 -0700 Subject: [PATCH 2/2] Release v1.18.0 --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4744a5a..d1904fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ ## [Unreleased] +## [1.18.0] - 2016-06-27 ### Added - `./runtests` test runner with coverage tracking by default - testing on OS X @@ -300,7 +301,8 @@ signature of `func(*cli.Context) error`, as defined by `cli.ActionFunc`. ### Added - Initial implementation. -[Unreleased]: https://github.com/urfave/cli/compare/v1.17.0...HEAD +[Unreleased]: https://github.com/urfave/cli/compare/v1.18.0...HEAD +[1.18.0]: https://github.com/urfave/cli/compare/v1.17.0...v1.18.0 [1.17.0]: https://github.com/urfave/cli/compare/v1.16.0...v1.17.0 [1.16.0]: https://github.com/urfave/cli/compare/v1.15.0...v1.16.0 [1.15.0]: https://github.com/urfave/cli/compare/v1.14.0...v1.15.0