From 557325bc0351b7b06e34d5d4198c70966a848e7f Mon Sep 17 00:00:00 2001 From: Ben Abrams Date: Sun, 12 Nov 2017 12:02:20 -0800 Subject: [PATCH] prep for 3.1.0 release --- CHANGELOG.md | 5 ++++- lib/sensu-plugins-opsgenie/version.rb | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 658e968..c5c9321 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 at [Keep A Changelog](http://keepachangelog.com/) ## [Unreleased] + +## [3.1.0] - 2017-11-12 ### Added - Added optional `-t, --template` parameter to specify the location of a ERB template file - Added possibility to specify custom timeout @@ -62,7 +64,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang - initial release - Fixed json configuration load -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-opsgenie/compare/3.0.0...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-opsgenie/compare/3.1.0...HEAD +[3.1.0]: https://github.com/sensu-plugins/sensu-plugins-opsgenie/compare/3.0.0...3.1.0 [3.0.0]: https://github.com/sensu-plugins/sensu-plugins-opsgenie/compare/2.0.1...3.0.0 [2.0.1]: https://github.com/sensu-plugins/sensu-plugins-opsgenie/compare/2.0.0...2.0.1 [2.0.0]: https://github.com/sensu-plugins/sensu-plugins-opsgenie/compare/1.0.0...2.0.0 diff --git a/lib/sensu-plugins-opsgenie/version.rb b/lib/sensu-plugins-opsgenie/version.rb index 3ca5272..7930391 100644 --- a/lib/sensu-plugins-opsgenie/version.rb +++ b/lib/sensu-plugins-opsgenie/version.rb @@ -5,7 +5,7 @@ module SensuPluginsOpsgenie # This defines the version of the gem module Version MAJOR = 3 - MINOR = 0 + MINOR = 1 PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')