From ceb86a3888acc87bc18e2ecd3b337b348c681052 Mon Sep 17 00:00:00 2001 From: Justin Kolberg Date: Wed, 7 Mar 2018 15:37:32 -0800 Subject: [PATCH] prep for 3.0.0 release Signed-off-by: Justin Kolberg --- CHANGELOG.md | 4 +++- lib/sensu-plugins-disk-checks/version.rb | 6 +++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 59e9bc0..9b987d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins ## [Unreleased] +## [3.0.0] - 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) @@ -170,7 +171,8 @@ https://mathias-kettner.de/checkmk_filesystems.html ### Added - initial release -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-disk-checks/compare/2.5.1...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-disk-checks/compare/3.0.0...HEAD +[3.0.0]: https://github.com/sensu-plugins/sensu-plugins-disk-checks/compare/2.5.1...3.0.0 [2.5.1]: https://github.com/sensu-plugins/sensu-plugins-disk-checks/compare/2.5.0...2.5.1 [2.5.0]: https://github.com/sensu-plugins/sensu-plugins-disk-checks/compare/2.4.2...2.5.0 [2.4.2]: https://github.com/sensu-plugins/sensu-plugins-disk-checks/compare/2.4.1...2.4.2 diff --git a/lib/sensu-plugins-disk-checks/version.rb b/lib/sensu-plugins-disk-checks/version.rb index 31a66c2..6c0e7a7 100644 --- a/lib/sensu-plugins-disk-checks/version.rb +++ b/lib/sensu-plugins-disk-checks/version.rb @@ -1,8 +1,8 @@ module SensuPluginsDiskChecks module Version - MAJOR = 2 - MINOR = 5 - PATCH = 1 + MAJOR = 3 + MINOR = 0 + PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end