diff --git a/doc/release_notes.md b/doc/release_notes.md index 8bb4dec0..2c05504b 100644 --- a/doc/release_notes.md +++ b/doc/release_notes.md @@ -1,5 +1,11 @@ Release notes ============= +### 0.17.0 (2019-04-24) +* Extended capabilities for list type options ([#26120](http://projects.theforeman.org/issues/26120)) +* Document how to deprecate commands ([PR #301](https://github.com/theforeman/hammer-cli/pull/301)) ([#24964](http://projects.theforeman.org/issues/24964)) +* Extensible commands in hammer ([#21635](http://projects.theforeman.org/issues/21635)) +* Table output allows to hide fields with no error ([#26453](http://projects.theforeman.org/issues/26453)) + ### 0.16.0 (2019-01-16) * Fixed instructions in i18n docs ([#25724](http://projects.theforeman.org/issues/25724)) * Option validators can be mixed with sources ([#22253](http://projects.theforeman.org/issues/22253)) diff --git a/lib/hammer_cli/version.rb b/lib/hammer_cli/version.rb index 0f8fd61d..4ff52511 100644 --- a/lib/hammer_cli/version.rb +++ b/lib/hammer_cli/version.rb @@ -1,5 +1,5 @@ module HammerCLI def self.version - @version ||= Gem::Version.new '0.17-develop' + @version ||= Gem::Version.new '0.17.0' end end