From 85a6b3afb17f15f0e5d873606e46b40bd1e802cb Mon Sep 17 00:00:00 2001 From: Ben Abrams Date: Fri, 2 Mar 2018 01:09:37 -0800 Subject: [PATCH] prep for 1.6.1 release --- CHANGELOG.md | 7 +++++-- lib/sensu-plugins-consul/version.rb | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aaee474..377b786 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,10 @@ This project adheres to [Semantic Versioning](http://semver.org/). This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md) ## [Unreleased] + +## [1.6.1] - 2018-03-02 ### Fixed -- Bug fix for `check-consul-servers` so timeout option works +- Bug fix for `check-consul-servers` so timeout option works (@joshbenner) ## [1.6.0] - 2017-09-30 ### Added @@ -100,7 +102,8 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins ### Added - initial release -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-consul/compare/1.6.0...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-consul/compare/1.6.1...HEAD +[1.6.1]: https://github.com/sensu-plugins/sensu-plugins-consul/compare/1.6.0...1.6.1 [1.6.0]: https://github.com/sensu-plugins/sensu-plugins-consul/compare/1.5.0...1.6.0 [1.5.0]: https://github.com/sensu-plugins/sensu-plugins-consul/compare/1.4.1...1.5.0 [1.4.1]: https://github.com/sensu-plugins/sensu-plugins-consul/compare/1.4.0...1.4.1 diff --git a/lib/sensu-plugins-consul/version.rb b/lib/sensu-plugins-consul/version.rb index d5cb360..87425b2 100644 --- a/lib/sensu-plugins-consul/version.rb +++ b/lib/sensu-plugins-consul/version.rb @@ -2,7 +2,7 @@ module SensuPluginsConsul module Version MAJOR = 1 MINOR = 6 - PATCH = 0 + PATCH = 1 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end