diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e03739..75e60d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,15 @@ -#Change Log +# Change Log This project adheres to [Semantic Versioning](http://semver.org/). This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md) ## [Unreleased] +## [2.1.0] - 2018-02-16 +### Added +- Added options to allow for different age limits when the agent is disabled +- Added a switch to use the new limits so as not to impact current functionality + ## [2.0.0] - 2018-01-31 ### Security - updated `rubocop` dependency to `~> 0.51.0` per: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-8418. (@jaredledvina) @@ -21,11 +26,6 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins - `check-puppet-errors.rb`: Added check for Puppet failures (@grem11n) - `check-puppet-last-run.rb`: Added option for ignoring Puppet failure (@grem11n) -# [Unreleased] -### Added -- Added options to allow for different age limits when the agent is disabled -- Added a switch to use the new limits so as not to impact current functionality - ## [1.2.0] - 2017-05-30 ### Added - `check-puppet-last-run.rb`: Added option for reporting failed restarts (@antonidabek) @@ -56,7 +56,8 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins ### Added - initial release -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-puppet/compare/2.0.0...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-puppet/compare/2.1.0...HEAD +[2.1.0]: https://github.com/sensu-plugins/sensu-plugins-puppet/compare/2.0.0...2.1.0 [2.0.0]: https://github.com/sensu-plugins/sensu-plugins-puppet/compare/1.3.0...2.0.0 [1.3.0]: https://github.com/sensu-plugins/sensu-plugins-puppet/compare/1.2.0...1.3.0 [1.2.0]: https://github.com/sensu-plugins/sensu-plugins-puppet/compare/1.1.0...1.2.0 diff --git a/lib/sensu-plugins-puppet/version.rb b/lib/sensu-plugins-puppet/version.rb index 1ba07d8..96bd734 100644 --- a/lib/sensu-plugins-puppet/version.rb +++ b/lib/sensu-plugins-puppet/version.rb @@ -1,7 +1,7 @@ module SensuPluginsPuppet module Version MAJOR = 2 - MINOR = 0 + MINOR = 1 PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')