diff --git a/CHANGELOG.md b/CHANGELOG.md index dc5cf9d..00f7db2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,10 @@ 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] -### Changed -- make the default paths work for Windows (@bodgit) + +## [2.2.0] - 2019-12-17 +### Added +- Adding support windows by default without overriding options by checking the platform and adjusting the paths automatically (@bodgit) ## [2.1.1] - 2018-05-03 ### Fixed @@ -62,7 +64,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.1.1...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-puppet/compare/2.2.0...HEAD +[2.2.0]: https://github.com/sensu-plugins/sensu-plugins-puppet/compare/2.1.1...2.2.0 [2.1.1]: https://github.com/sensu-plugins/sensu-plugins-puppet/compare/2.1.0...2.1.1 [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 diff --git a/lib/sensu-plugins-puppet/version.rb b/lib/sensu-plugins-puppet/version.rb index a30d72e..9be4cbf 100644 --- a/lib/sensu-plugins-puppet/version.rb +++ b/lib/sensu-plugins-puppet/version.rb @@ -1,8 +1,8 @@ module SensuPluginsPuppet module Version MAJOR = 2 - MINOR = 1 - PATCH = 1 + MINOR = 2 + PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end