diff --git a/CHANGELOG.md b/CHANGELOG.md index f7a649c..6114e34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins ## [Unreleased] +## [3.1.0] - 2018-01-31 ### Changed - `handler-slack.rb`: emit an `unknown` with helpful debug messages when passing in bad config (@majormoses) @@ -121,7 +122,8 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins ### Added - initial release -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-slack/compare/3.0.0...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-slack/compare/3.1.0...HEAD +[3.1.0]: https://github.com/sensu-plugins/sensu-plugins-slack/compare/3.0.0...3.1.0 [3.0.0]: https://github.com/sensu-plugins/sensu-plugins-slack/compare/2.0.0...3.0.0 [2.0.0]: https://github.com/sensu-plugins/sensu-plugins-slack/compare/1.5.0...2.0.0 [1.5.1]: https://github.com/sensu-plugins/sensu-plugins-slack/compare/1.5.0...1.5.1 diff --git a/lib/sensu-plugins-slack/version.rb b/lib/sensu-plugins-slack/version.rb index 4d7b0e5..2dfd40b 100644 --- a/lib/sensu-plugins-slack/version.rb +++ b/lib/sensu-plugins-slack/version.rb @@ -1,7 +1,7 @@ module SensuPluginsSlack module Version MAJOR = 3 - MINOR = 0 + MINOR = 1 PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')