Skip to content

Commit 16a31a9

Browse files
committed
prep for 1.12.0 release
1 parent 3601b23 commit 16a31a9

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44
This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md)
55

66
## [Unreleased]
7+
8+
## [1.12.0] - 2018-03-01
79
### Added
8-
- check-es-indices-field-number.rb: check if the number of fields in index(es) is approaching limit (default to 1000 in ES)
10+
- check-es-indices-field-number.rb: check if the number of fields in index(es) is approaching limit (default to 1000 in ES) (@huynt1979)
911
### Changed
10-
- Address a couple of rubocop style violations.
12+
- Address a couple of rubocop style violations (@huynt1979)
1113

1214
## [1.11.1] - 2018-02-27
1315
### Changed
@@ -234,7 +236,9 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
234236
- initial release
235237

236238

237-
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-elasticsearch/compare/1.11.0...HEAD
239+
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-elasticsearch/compare/1.12.0...HEAD
240+
[1.12.0]: https://github.com/sensu-plugins/sensu-plugins-elasticsearch/compare/1.11.1...1.12.0
241+
[1.11.1]: https://github.com/sensu-plugins/sensu-plugins-elasticsearch/compare/1.11.0...1.11.1
238242
[1.11.0]: https://github.com/sensu-plugins/sensu-plugins-elasticsearch/compare/1.10.0...1.11.0
239243
[1.10.0]: https://github.com/sensu-plugins/sensu-plugins-elasticsearch/compare/1.9.0...1.10.0
240244
[1.9.0]: https://github.com/sensu-plugins/sensu-plugins-elasticsearch/compare/1.8.1...1.9.0

lib/sensu-plugins-elasticsearch/version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module SensuPluginsElasticsearch
22
module Version
33
MAJOR = 1
4-
MINOR = 11
5-
PATCH = 1
4+
MINOR = 12
5+
PATCH = 0
66

77
VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
88
end

0 commit comments

Comments
 (0)