diff --git a/CHANGELOG.md b/CHANGELOG.md index 6095cdb..d09e554 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +4,11 @@ This project adheres to [Semantic Versioning](http://semver.org/). This CHANGELOG follows the located [here](https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md) ## [Unreleased] + +## [3.2.0] - 2018-04-17 ### Added - Added metrics-memory-vmstat.rb (@yuri-zubov sponsored by Actility, https://www.actility.com) - ## [3.1.3] - 2018-03-27 ### Security - updated yard dependency to `~> 0.9.11` per: https://nvd.nist.gov/vuln/detail/CVE-2017-17042 (@majormoses) @@ -144,7 +145,8 @@ 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.3...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/3.2.0...HEAD +[3.2.0]: https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/3.1.3..3.2.0 [3.1.3]: https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/3.1.2...3.1.3 [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 diff --git a/lib/sensu-plugins-memory-checks/version.rb b/lib/sensu-plugins-memory-checks/version.rb index d0db846..f7f9258 100644 --- a/lib/sensu-plugins-memory-checks/version.rb +++ b/lib/sensu-plugins-memory-checks/version.rb @@ -1,8 +1,8 @@ module SensuPluginsMemoryChecks module Version MAJOR = 3 - MINOR = 1 - PATCH = 3 + MINOR = 2 + PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end