From d05afc368c52daa7c5296734fc7a426b97f64981 Mon Sep 17 00:00:00 2001 From: Ben Abrams Date: Sun, 14 Jan 2018 09:42:40 -0800 Subject: [PATCH] prep for 4.1.0 release --- .github/PULL_REQUEST_TEMPLATE.md | 5 ++--- CHANGELOG.md | 14 ++++++++++---- lib/sensu-plugins-opsgenie/version.rb | 4 ++-- 3 files changed, 14 insertions(+), 9 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index aede799..1468772 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -4,7 +4,7 @@ #### General -- [ ] Update Changelog following the conventions laid out on [Keep A Changelog](http://keepachangelog.com/) +- [ ] Update Changelog following the conventions laid out [here](https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md) - [ ] Update README with any necessary configuration snippets @@ -24,5 +24,4 @@ #### Purpose -#### Known Compatability Issues - +#### Known Compatibility Issues diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c04f3b..220c7f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,16 @@ -#Change Log +# Change Log This project adheres to [Semantic Versioning](http://semver.org/). -This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/) +This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md) ## [Unreleased] + +## [4.1.0] 2018-01-14 ### Added -- Added possibility to specify custom alias for event ID (@Castaglia) +- Added possibility to specify custom alias for event ID, this acts in a similar way to proxy/JIT clients to dedupe alerts (@Castaglia) + +### Changed +- updated Changelog guidelines location (@majormoses) ## [4.0.1] - 2018-01-06 ### Fixed @@ -80,7 +85,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/4.0.1...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-opsgenie/compare/4.1.0...HEAD +[4.1.0]: https://github.com/sensu-plugins/sensu-plugins-opsgenie/compare/4.0.1...4.1.0 [4.0.1]: https://github.com/sensu-plugins/sensu-plugins-opsgenie/compare/4.0.0...4.0.1 [4.0.0]: https://github.com/sensu-plugins/sensu-plugins-opsgenie/compare/3.1.0...4.0.0 [3.1.0]: https://github.com/sensu-plugins/sensu-plugins-opsgenie/compare/3.0.0...3.1.0 diff --git a/lib/sensu-plugins-opsgenie/version.rb b/lib/sensu-plugins-opsgenie/version.rb index 22770de..ca34aa9 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 = 0 - PATCH = 1 + MINOR = 1 + PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')