From 66317b494544c90b85ba3126bb7b5e498b6cde93 Mon Sep 17 00:00:00 2001 From: Ben Abrams Date: Mon, 4 Jun 2018 19:06:21 -0700 Subject: [PATCH] prep for 4.0.0 release --- CHANGELOG.md | 5 ++++- lib/sensu-plugins-pagerduty/version.rb | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index db10843..0d18c86 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.0.0] - 2018-06-04 ### Breaking Changes - Bumped dependency of `sensu-plugin` to 2.x which will globally disable deprecated event filtering. You can read about it [here](https://github.com/sensu-plugins/sensu-plugin/blob/master/CHANGELOG.md#v145---2017-03-07) (@rajiv-g) @@ -124,7 +126,8 @@ marking it as a stable 1.0.0 release. ### Added - initial release -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-pagerduty/compare/3.1.0...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-pagerduty/compare/4.0.0...HEAD +[4.0.0]: https://github.com/sensu-plugins/sensu-plugins-pagerduty/compare/3,1,0...4.0.0 [3.1.0]: https://github.com/sensu-plugins/sensu-plugins-pagerduty/compare/3.0.1...3,1.0 [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 diff --git a/lib/sensu-plugins-pagerduty/version.rb b/lib/sensu-plugins-pagerduty/version.rb index 8f7e2b4..f513c2e 100644 --- a/lib/sensu-plugins-pagerduty/version.rb +++ b/lib/sensu-plugins-pagerduty/version.rb @@ -1,7 +1,7 @@ module SensuPluginsPagerduty module Version - MAJOR = 3 - MINOR = 1 + MAJOR = 4 + MINOR = 0 PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')