From 5b26812dd4d564f7a64005a6e3b1ecb8bb6391ec Mon Sep 17 00:00:00 2001 From: Ben Abrams Date: Tue, 4 Jul 2017 10:12:59 -0700 Subject: [PATCH] prep for 1.4.0 release --- CHANGELOG.md | 8 ++++++-- lib/sensu-plugins-elasticsearch/version.rb | 4 ++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 12232f9..62c4e33 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,12 @@ This project adheres to [Semantic Versioning](http://semver.org/). This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/) ## [Unreleased] +## [1.4.0] - 2017-07-04 ### Added - added ruby 2.4 testing (@majormoses) -- HTTP Basic Auth support is added for shard allocation status (@cihangirbesiktas) +- check-es-shard-allocation-status.rb: HTTP Basic Auth support added (@cihangirbesiktas) +- check-es-shard-allocation-status.rb: timeout option for rest calls (@cihangirbesiktas) + ### Fixed - PR template spell "compatibility" correctly. (@majormoses) @@ -156,7 +159,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang ### Added - initial release -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-elasticsearch/compare/1.3.1...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-elasticsearch/compare/1.4.0...HEAD +[1.4.0]: https://github.com/sensu-plugins/sensu-plugins-elasticsearch/compare/1.3.1...1.4.0 [1.3.1]: https://github.com/sensu-plugins/sensu-plugins-elasticsearch/compare/1.3.0...1.3.1 [1.3.0]: https://github.com/sensu-plugins/sensu-plugins-elasticsearch/compare/1.2.0...1.3.0 [1.2.0]: https://github.com/sensu-plugins/sensu-plugins-elasticsearch/compare/1.1.3...1.2.0 diff --git a/lib/sensu-plugins-elasticsearch/version.rb b/lib/sensu-plugins-elasticsearch/version.rb index 1d74014..32997a2 100644 --- a/lib/sensu-plugins-elasticsearch/version.rb +++ b/lib/sensu-plugins-elasticsearch/version.rb @@ -1,8 +1,8 @@ module SensuPluginsElasticsearch module Version MAJOR = 1 - MINOR = 3 - PATCH = 1 + MINOR = 4 + PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end