diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f1c9b0..574a3a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ This CHANGELOG follows the format listed at [Our CHANGELOG Guidelines ](https:// Which is based on [Keep A Changelog](http://keepachangelog.com/) ## [Unreleased] + +## [2.3.1] - 2017-10-06 ### Changed - check-stale-results.rb: update the require order for json so that it comes after sensu_plugin (@barryorourke) - handler-purge-stale-results.rb: fix invalid hash syntax resulting in NameError (@cwjohnston) @@ -97,7 +99,8 @@ Which is based on [Keep A Changelog](http://keepachangelog.com/) ### Added - initial release -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-sensu/compare/2.3.0...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-sensu/compare/2.3.1...HEAD +[2.3.1]: https://github.com/sensu-plugins/sensu-plugins-sensu/compare/2.3.0...2.3.1 [2.3.0]: https://github.com/sensu-plugins/sensu-plugins-sensu/compare/2.2.2...2.3.0 [2.2.2]: https://github.com/sensu-plugins/sensu-plugins-sensu/compare/2.2.1...2.2.2 [2.2.1]: https://github.com/sensu-plugins/sensu-plugins-sensu/compare/2.2.0...2.2.1 diff --git a/lib/sensu-plugins-sensu/version.rb b/lib/sensu-plugins-sensu/version.rb index ef93616..ac81128 100644 --- a/lib/sensu-plugins-sensu/version.rb +++ b/lib/sensu-plugins-sensu/version.rb @@ -3,7 +3,7 @@ module SensuPluginsSensu module Version MAJOR = 2 MINOR = 3 - PATCH = 0 + PATCH = 1 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end