From 16a31a91d8db6b1471664e504f00d0c39dd608df Mon Sep 17 00:00:00 2001 From: Ben Abrams Date: Thu, 1 Mar 2018 15:31:14 -0800 Subject: [PATCH] prep for 1.12.0 release --- CHANGELOG.md | 10 +++++++--- lib/sensu-plugins-elasticsearch/version.rb | 4 ++-- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cbe0b21..b46af37 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +4,12 @@ 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.12.0] - 2018-03-01 ### Added -- check-es-indices-field-number.rb: check if the number of fields in index(es) is approaching limit (default to 1000 in ES) +- check-es-indices-field-number.rb: check if the number of fields in index(es) is approaching limit (default to 1000 in ES) (@huynt1979) ### Changed -- Address a couple of rubocop style violations. +- Address a couple of rubocop style violations (@huynt1979) ## [1.11.1] - 2018-02-27 ### Changed @@ -234,7 +236,9 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins - initial release -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-elasticsearch/compare/1.11.0...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-elasticsearch/compare/1.12.0...HEAD +[1.12.0]: https://github.com/sensu-plugins/sensu-plugins-elasticsearch/compare/1.11.1...1.12.0 +[1.11.1]: https://github.com/sensu-plugins/sensu-plugins-elasticsearch/compare/1.11.0...1.11.1 [1.11.0]: https://github.com/sensu-plugins/sensu-plugins-elasticsearch/compare/1.10.0...1.11.0 [1.10.0]: https://github.com/sensu-plugins/sensu-plugins-elasticsearch/compare/1.9.0...1.10.0 [1.9.0]: https://github.com/sensu-plugins/sensu-plugins-elasticsearch/compare/1.8.1...1.9.0 diff --git a/lib/sensu-plugins-elasticsearch/version.rb b/lib/sensu-plugins-elasticsearch/version.rb index 1a06700..d2c6158 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 = 11 - PATCH = 1 + MINOR = 12 + PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end