From 5f472c647245885b8fe211e3044419ba3ebad3c8 Mon Sep 17 00:00:00 2001 From: Ben Abrams Date: Sat, 17 Mar 2018 01:32:39 -0700 Subject: [PATCH] prep for 3.0.0 release --- CHANGELOG.md | 4 +++- lib/sensu-plugins-process-checks/version.rb | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 98e1b67..b562a7f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins ## [Unreleased] +## [3.0.0] - 2018-03-17 ### Security - updated rubocop dependency to `~> 0.51.0` per: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-8418. (@majormoses) @@ -169,7 +170,8 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins - built against 1.9.3, 2.0, 2.1 - cryptographically signed -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/2.7.0...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/3.0.0...HEAD +[3.0.0]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/2.7.0...3.0.0 [2.7.0]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/2.6.0...2.7.0 [2.6.0]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/2.5.0...2.6.0 [2.5.0]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/2.4.0...2.5.0 diff --git a/lib/sensu-plugins-process-checks/version.rb b/lib/sensu-plugins-process-checks/version.rb index f5eb441..0179b7b 100644 --- a/lib/sensu-plugins-process-checks/version.rb +++ b/lib/sensu-plugins-process-checks/version.rb @@ -1,7 +1,7 @@ module SensuPluginsProcessChecks module Version - MAJOR = 2 - MINOR = 7 + MAJOR = 3 + MINOR = 0 PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')