From 030057f3a77c788f13e47665179a532fbc20e55a Mon Sep 17 00:00:00 2001 From: Ben Abrams Date: Wed, 23 May 2018 09:09:12 -0700 Subject: [PATCH] prep for 2.1.0 release --- CHANGELOG.md | 5 ++++- lib/sensu-plugins-elasticsearch/version.rb | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ab1269..94183dc 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 [here](/~https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md) ## [Unreleased] + +## [2.1.0] - 2018-05-23 ### Added - check-es-shard-allocation-status.rb, check-es-file-descriptors.rb, check-es-heap.rb: added `--cert-file` option which allows you to specify a ca-cert to be used to verify TLS (@vin01) @@ -253,7 +255,8 @@ This CHANGELOG follows the format listed [here](/~https://github.com/sensu-plugins - initial release -[Unreleased]: /~https://github.com/sensu-plugins/sensu-plugins-elasticsearch/compare/2.0.1...HEAD +[Unreleased]: /~https://github.com/sensu-plugins/sensu-plugins-elasticsearch/compare/2.1.0...HEAD +[2.1.0]: /~https://github.com/sensu-plugins/sensu-plugins-elasticsearch/compare/2.0.1...2.1.0 [2.0.1]: /~https://github.com/sensu-plugins/sensu-plugins-elasticsearch/compare/2.0.0...2.0.1 [2.0.0]: /~https://github.com/sensu-plugins/sensu-plugins-elasticsearch/compare/1.12.0...2.0.0 [1.12.0]: /~https://github.com/sensu-plugins/sensu-plugins-elasticsearch/compare/1.11.1...1.12.0 diff --git a/lib/sensu-plugins-elasticsearch/version.rb b/lib/sensu-plugins-elasticsearch/version.rb index 1da8713..73cb2d9 100644 --- a/lib/sensu-plugins-elasticsearch/version.rb +++ b/lib/sensu-plugins-elasticsearch/version.rb @@ -1,8 +1,8 @@ module SensuPluginsElasticsearch module Version MAJOR = 2 - MINOR = 0 - PATCH = 1 + MINOR = 1 + PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end