diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d6cedf..8b2585e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ This CHANGELOG follows the located [here](https://github.com/sensu-plugins/commu ## [Unreleased] +## [3.1.1] - 2017-10-25 ### Fixed - check-memory-percent.sh: compare variable `$os` rather than the string 'os' (@lcc207) @@ -130,6 +131,7 @@ This CHANGELOG follows the located [here](https://github.com/sensu-plugins/commu - initial release [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/3.1.0...HEAD +[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 diff --git a/lib/sensu-plugins-memory-checks/version.rb b/lib/sensu-plugins-memory-checks/version.rb index e9e9e8d..53aab95 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 = 0 + PATCH = 1 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end