From 51c6576b60f632ee1d2d6afe0bcf31594d323795 Mon Sep 17 00:00:00 2001 From: Ben Abrams Date: Fri, 16 Feb 2018 17:23:35 -0800 Subject: [PATCH] prep for 3.0.1 release --- .github/PULL_REQUEST_TEMPLATE.md | 2 +- CHANGELOG.md | 12 +++++++++--- lib/sensu-plugins-pagerduty/version.rb | 2 +- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 8821e85..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 diff --git a/CHANGELOG.md b/CHANGELOG.md index d144df7..9c684bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,21 @@ # 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] + +## [3.0.1] - 2018-02-16 ### Added - ruby 2.4 testing (@majormoses) ### Fixed -- PR template typo +- PR template typo (@majormoses) - if pager_team is not found in the handler json config, the default key will be used instead (@internaught) +### Changed +- updated changelog guidelines location (@majormoses) + ## [3.0.0] - 2017-06-01 ### Breaking Change - changed the precedence of pager_team evaluation from `client -> check -> json_config` to `check -> client -> json_config` (@guru-beach) @@ -110,7 +115,8 @@ marking it as a stable 1.0.0 release. ### Added - initial release -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-pagerduty/compare/3.0.0...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-pagerduty/compare/3.0.1...HEAD +[3.0.1]: https://github.com/sensu-plugins/sensu-plugins-pagerduty/compare/3.0.0...3.0.1 [3.0.0]: https://github.com/sensu-plugins/sensu-plugins-pagerduty/compare/2.2.0...3.0.0 [2.2.0]: https://github.com/sensu-plugins/sensu-plugins-pagerduty/compare/2.1.0...2.2.0 [2.1.0]: https://github.com/sensu-plugins/sensu-plugins-pagerduty/compare/2.0.0...2.1.0 diff --git a/lib/sensu-plugins-pagerduty/version.rb b/lib/sensu-plugins-pagerduty/version.rb index 614aaf8..618c7fe 100644 --- a/lib/sensu-plugins-pagerduty/version.rb +++ b/lib/sensu-plugins-pagerduty/version.rb @@ -2,7 +2,7 @@ module SensuPluginsPagerduty module Version MAJOR = 3 MINOR = 0 - PATCH = 0 + PATCH = 1 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end