From 40fadb191c30b9c26cb94c6f17cb58e3d5db3d63 Mon Sep 17 00:00:00 2001 From: Eric Heydrick Date: Sun, 7 Aug 2016 16:18:10 -0700 Subject: [PATCH] prep for 1.1.0 release --- CHANGELOG.md | 9 ++++++--- lib/sensu-plugins-network-checks/version.rb | 2 +- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f9dfafb..9500512 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +4,13 @@ This project adheres to [Semantic Versioning](http://semver.org/). This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/) ## [Unreleased] + +## [1.1.0] - 2016-08-07 ### Added -- metrics-netstat-tcp.rb: Add IPv6 state counts +- metrics-netstat-tcp.rb: Add IPv6 state counts (@mlf4aiur) ### Fixed -- check-ping.rb: Fix false positives (#34) +- check-ping.rb: Fix false positives (#34 via @kai101) ## [1.0.0] - 2016-06-14 ### Fixed @@ -149,7 +151,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.0.0...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/1.1.0...HEAD +[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 [0.2.4]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/0.1.4...0.2.4 [0.1.4]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/0.1.3...0.1.4 diff --git a/lib/sensu-plugins-network-checks/version.rb b/lib/sensu-plugins-network-checks/version.rb index ba5ed2a..cc07c3a 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 = 0 + MINOR = 1 PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')