From be06d46edf9c03676d9d1e8cc8b6c43cdbe858c0 Mon Sep 17 00:00:00 2001 From: Ben Abrams Date: Mon, 31 Jul 2017 14:35:44 -0700 Subject: [PATCH] prep for 3.0.2 release --- CHANGELOG.md | 9 ++++++--- lib/sensu-plugins-memory-checks/version.rb | 2 +- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e412b0..19a6138 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,12 +4,14 @@ This project adheres to [Semantic Versioning](http://semver.org/). This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/) ## [Unreleased] + +## [3.0.2] - 2017-07-31 ### Fixed -- fix shell call response when running on non en_US locale systems (@stefan-walluhn) +- check-memory-percent.rb, check-memory.rb: fix shell call response when running on non en_US locale systems (@stefan-walluhn) ## [3.0.1] - 2017-07-07 ### Fixed -- check-memory.sh: fixed a syntax error preventing it from running (@majormoses) +- check-memory.sh: fixed a syntax error preventing it from running (@majormoses) ### [3.0.0] - 2017-07-07 ### Added @@ -112,7 +114,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang ### Added - initial release -[unreleased]: https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/3.0.1...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/3.0.1...HEAD +[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.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 diff --git a/lib/sensu-plugins-memory-checks/version.rb b/lib/sensu-plugins-memory-checks/version.rb index 78b1e7e..043d7b9 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 = 0 - PATCH = 1 + PATCH = 2 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end