diff --git a/CHANGELOG.md b/CHANGELOG.md index 44e170d..96a9de7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ 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] + +## [4.2.0] - 2018-02-20 ### Changed - Providing better alert description field using Sensu check output (@Castaglia) @@ -105,6 +107,7 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins - Fixed json configuration load [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-opsgenie/compare/4.1.2...HEAD +[4.2.0]: https://github.com/sensu-plugins/sensu-plugins-opsgenie/compare/4.1.2...4.2.0 [4.1.2]: https://github.com/sensu-plugins/sensu-plugins-opsgenie/compare/4.1.1...4.1.2 [4.1.1]: https://github.com/sensu-plugins/sensu-plugins-opsgenie/compare/4.1.0...4.1.1 [4.1.0]: https://github.com/sensu-plugins/sensu-plugins-opsgenie/compare/4.0.1...4.1.0 diff --git a/lib/sensu-plugins-opsgenie/version.rb b/lib/sensu-plugins-opsgenie/version.rb index 30979ba..8956730 100644 --- a/lib/sensu-plugins-opsgenie/version.rb +++ b/lib/sensu-plugins-opsgenie/version.rb @@ -5,8 +5,8 @@ module SensuPluginsOpsgenie # This defines the version of the gem module Version MAJOR = 4 - MINOR = 1 - PATCH = 2 + MINOR = 2 + PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')