From 555245682808e1dfabcecdb9c5dfe6d9f2b87603 Mon Sep 17 00:00:00 2001 From: Ben Abrams Date: Wed, 7 Jun 2017 19:01:36 -0700 Subject: [PATCH] prep for 2.0.0 release --- CHANGELOG.md | 5 ++++- lib/sensu-plugins-network-checks/version.rb | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e40c6d7..4b29df6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/) ## [Unreleased] + +## [2.0.0] 2017-06-07 ### Breaking Changes - check-multicast-groups.rb: Stop loading system wide settings from `settings['check-multicast-groups']` and use only the config specified as `-c` (#57 via @maoe) @@ -169,7 +171,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang * initial release, same as community repo -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/1.2.0...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/2.0.0...HEAD +[2.0.0]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/1.2.0...2.0.0 [1.2.0]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/1.1.0...1.2.0 [1.1.0]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/1.0.0...1.1.0 [1.0.0]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/0.2.4...1.0.0 diff --git a/lib/sensu-plugins-network-checks/version.rb b/lib/sensu-plugins-network-checks/version.rb index 603f83a..2e5571b 100644 --- a/lib/sensu-plugins-network-checks/version.rb +++ b/lib/sensu-plugins-network-checks/version.rb @@ -1,7 +1,7 @@ module SensuPluginsNetworkChecks module Version - MAJOR = 1 - MINOR = 2 + MAJOR = 2 + MINOR = 0 PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')