From a0b08b09832119b735da1f85726d01058f2815d8 Mon Sep 17 00:00:00 2001 From: Ben Abrams Date: Thu, 8 Feb 2018 23:49:26 -0800 Subject: [PATCH] prep for 2.2.0 release --- .github/PULL_REQUEST_TEMPLATE.md | 2 +- CHANGELOG.md | 12 +++++++++--- lib/sensu-plugins-network-checks/version.rb | 4 ++-- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 8821e85..1468772 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -4,7 +4,7 @@ #### General -- [ ] Update Changelog following the conventions laid out on [Keep A Changelog](http://keepachangelog.com/) +- [ ] Update Changelog following the conventions laid out [here](https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md) - [ ] Update README with any necessary configuration snippets diff --git a/CHANGELOG.md b/CHANGELOG.md index 82f002a..06cc571 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,16 @@ # Change Log This project adheres to [Semantic Versioning](http://semver.org/). -This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/) +This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md) ## [Unreleased] + +## [2.2.0] - 2018-02-02 ### Added -- check-ports.rb: support for multiple hosts +- check-ports.rb: support for multiple hosts (@DDSloan96) + +### Changed +- updated changelog guidelines location (@majormoses) ## [2.1.1] - 2018-01-06 ### Fixed @@ -189,7 +194,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/2.1.1...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/2.2.0...HEAD +[2.2.0]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/2.1.1...2.2.0 [2.1.1]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/2.1.0...2.1.1 [2.1.0]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/2.0.1...2.1.0 [2.0.1]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/2.0.0...2.0.1 diff --git a/lib/sensu-plugins-network-checks/version.rb b/lib/sensu-plugins-network-checks/version.rb index 60f5e95..6c41d76 100644 --- a/lib/sensu-plugins-network-checks/version.rb +++ b/lib/sensu-plugins-network-checks/version.rb @@ -1,8 +1,8 @@ module SensuPluginsNetworkChecks module Version MAJOR = 2 - MINOR = 1 - PATCH = 1 + MINOR = 2 + PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end