diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f34c8c..f125cbd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/) ## [Unreleased] +## [1.2.0] - 2017-05-30 ### Added - `check-puppet-last-run.rb`: Added option for reporting failed restarts (@antonidabek) @@ -33,7 +34,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang ### Added - initial release -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-puppet/compare/1.1.0...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-puppet/compare/1.2.0...HEAD +[1.2.0]: https://github.com/sensu-plugins/sensu-plugins-puppet/compare/1.1.0...1.2.0 [1.1.0]: https://github.com/sensu-plugins/sensu-plugins-puppet/compare/1.0.0...1.1.0 [1.0.0]: https://github.com/sensu-plugins/sensu-plugins-puppet/compare/0.0.2...1.0.0 [0.0.2]: https://github.com/sensu-plugins/sensu-plugins-puppet/compare/0.0.1...0.0.2 diff --git a/lib/sensu-plugins-puppet/version.rb b/lib/sensu-plugins-puppet/version.rb index 60f51ad..01947c7 100644 --- a/lib/sensu-plugins-puppet/version.rb +++ b/lib/sensu-plugins-puppet/version.rb @@ -3,7 +3,7 @@ module SensuPluginsPuppet # This defines the version of the gem module Version MAJOR = 1 - MINOR = 1 + MINOR = 2 PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')