From 64b5ab4c3d46dc7235cdbcfcf8b7e64e9db63dcc Mon Sep 17 00:00:00 2001 From: Ben Abrams Date: Sat, 17 Mar 2018 01:06:16 -0700 Subject: [PATCH] prep for 3.0.0 release --- CHANGELOG.md | 2 ++ lib/sensu-plugins-network-checks/version.rb | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b87cca6..5988a49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugin ## [Unreleased] +## [3.0.0] - 2018-03-17 ### Security - updated rubocop dependency to `~> 0.51.0` per: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-8418. (@majormoses) @@ -212,6 +213,7 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugin * initial release, same as community repo [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/2.3.0...HEAD +[3.0.0]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/2.3.0...3.0.0 [2.3.1]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/2.3.0...2.3.1 [2.3.0]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/2.2.0...2.3.0 [2.2.0]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/2.1.1...2.2.0 diff --git a/lib/sensu-plugins-network-checks/version.rb b/lib/sensu-plugins-network-checks/version.rb index 37a50d5..60fd969 100644 --- a/lib/sensu-plugins-network-checks/version.rb +++ b/lib/sensu-plugins-network-checks/version.rb @@ -2,9 +2,9 @@ module SensuPluginsNetworkChecks module Version - MAJOR = 2 - MINOR = 3 - PATCH = 1 + MAJOR = 3 + MINOR = 0 + PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end