From 303ebe3a4966a7e5ba5c522cd7325528b5de82e5 Mon Sep 17 00:00:00 2001 From: Justin Kolberg Date: Wed, 7 Mar 2018 15:03:58 -0800 Subject: [PATCH] prep for 3.1.2 release Signed-off-by: Justin Kolberg --- CHANGELOG.md | 7 +++++-- lib/sensu-plugins-memory-checks/version.rb | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d98a1e8..3fed231 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ This CHANGELOG follows the located [here](https://github.com/sensu-plugins/commu ## [Unreleased] +## [3.1.2] - 2018-03-07 + ### Security - updated rubocop dependency to `~> 0.51.0` per: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-8418. (@majormoses) @@ -136,11 +138,12 @@ This CHANGELOG follows the located [here](https://github.com/sensu-plugins/commu ### Added - initial release -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/3.1.0...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/3.1.2...HEAD +[3.1.2]: https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/3.1.1...3.1.2 [3.1.1]: https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/3.1.0...3.1.1 [3.1.0]: https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/3.0.1...3.1.0 [3.0.2]: https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/3.0.1...3.0.2 -[3.0.1]: https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/3.0.0...3.0.1 +[3.0.1]: https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/3.0.0...3.0.1 [3.0.0]: https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/2.1.0...3.0.0 [2.1.0]: https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/2.0.0...2.1.0 [2.0.0]: https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/1.0.2...2.0.0 diff --git a/lib/sensu-plugins-memory-checks/version.rb b/lib/sensu-plugins-memory-checks/version.rb index 53aab95..705dac8 100644 --- a/lib/sensu-plugins-memory-checks/version.rb +++ b/lib/sensu-plugins-memory-checks/version.rb @@ -2,7 +2,7 @@ module SensuPluginsMemoryChecks module Version MAJOR = 3 MINOR = 1 - PATCH = 1 + PATCH = 2 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end