From 0bf8ab2b385e8c0b2e4f98ee95c69e8a5fdd01ae Mon Sep 17 00:00:00 2001 From: Ben Abrams Date: Sat, 17 Mar 2018 01:53:31 -0700 Subject: [PATCH] prep for 3.0.0 release --- CHANGELOG.md | 9 ++++++--- lib/sensu-plugins-sensu/version.rb | 4 ++-- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d20210..97fb086 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,11 +5,13 @@ This CHANGELOG follows the format listed at [Our CHANGELOG Guidelines ](https:// Which is based on [Keep A Changelog](http://keepachangelog.com/) ## [Unreleased] -### Changed -- `bin/metrics-*`: Used `Sensu::Plugin::Metric::CLI::Generic` class instead of Graphite specific class for metrics. (@bergerx) + ### Breaking Change - bumped dependency of `sensu-plugin` to 2.x you can read about it [here](https://github.com/sensu-plugins/sensu-plugin/blob/master/CHANGELOG.md#v200---2017-03-29) +### Changed +- `bin/metrics-*`: Used `Sensu::Plugin::Metric::CLI::Generic` class instead of Graphite specific class for metrics. (@bergerx) + ## [2.5.0] - 2018-03-06 ### Changed - check-stale-results.rb: support https protocol via api/host declaration @@ -120,7 +122,8 @@ Which is based on [Keep A Changelog](http://keepachangelog.com/) ### Added - initial release -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-sensu/compare/2.4.1...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-sensu/compare/3.0.0...HEAD +[3.0.0]: https://github.com/sensu-plugins/sensu-plugins-sensu/compare/2.5.0...3.0.0 [2.5.0]: https://github.com/sensu-plugins/sensu-plugins-sensu/compare/2.4.1...2.5.0 [2.4.1]: https://github.com/sensu-plugins/sensu-plugins-sensu/compare/2.4.0...2.4.1 [2.4.0]: https://github.com/sensu-plugins/sensu-plugins-sensu/compare/2.3.1...2.4.0 diff --git a/lib/sensu-plugins-sensu/version.rb b/lib/sensu-plugins-sensu/version.rb index 85b1de9..a7fc136 100644 --- a/lib/sensu-plugins-sensu/version.rb +++ b/lib/sensu-plugins-sensu/version.rb @@ -1,8 +1,8 @@ module SensuPluginsSensu # This defines the version of the gem module Version - MAJOR = 2 - MINOR = 5 + MAJOR = 3 + MINOR = 0 PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')