From c076d2002f307661a54af04f2344846319769c9e Mon Sep 17 00:00:00 2001 From: Ben Abrams Date: Wed, 2 May 2018 01:54:00 -0700 Subject: [PATCH] perp for 3.1.0 release --- CHANGELOG.md | 6 ++++-- lib/sensu-plugins-process-checks/version.rb | 4 ++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 549530e..db6b51c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,10 +5,11 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins ## [Unreleased] + +## [3.1.0] - 2018-05-02 ### Added - metrics-ipcs.rb: Add ipcs metrics (@yuri-zubov sponsored by Actility, https://www.actility.com) - ## [3.0.2] - 2018-03-27 ### Security - updated yard dependency to `~> 0.9.11` per: https://nvd.nist.gov/vuln/detail/CVE-2017-17042 (@majormoses) @@ -181,7 +182,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/3.0.2...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/3.1.0...HEAD +[3.1.0]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/3.0.2...3.1.0 [3.0.2]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/3.0.1...3.0.2 [3.0.1]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/3.0.0...3.0.1 [3.0.0]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/2.7.0...3.0.0 diff --git a/lib/sensu-plugins-process-checks/version.rb b/lib/sensu-plugins-process-checks/version.rb index de99f0a..61b264d 100644 --- a/lib/sensu-plugins-process-checks/version.rb +++ b/lib/sensu-plugins-process-checks/version.rb @@ -1,8 +1,8 @@ module SensuPluginsProcessChecks module Version MAJOR = 3 - MINOR = 0 - PATCH = 2 + MINOR = 1 + PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end