From 8cc4610c6608d4e73a27beee5cd64aaff2ec76c9 Mon Sep 17 00:00:00 2001 From: Cameron Johnston Date: Tue, 4 Oct 2016 12:59:06 -0600 Subject: [PATCH] release version 1.4.3 --- CHANGELOG.md | 5 ++++- lib/sensu-plugin.rb | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 07c8cd1..e13e3ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v1.4.3] - 2016-10-04 + - Fixed an incompatibility with Ruby 1.9 introduced in Sensu::Handler api_request circa sensu-plugin 1.3.0 - Fixed Sensu::Handler check dependency filtering by using plural form `events` API endpoint, instead of singular-form `event`. - Fixed a condition where `config_files` method may attempt to read from a non-existent file. @@ -73,7 +75,8 @@ The changes in earlier releases are not fully documented but comparison links ar * [v0.1.1] * [v0.1.0] -[Unreleased]: https://github.com/sensu-plugins/sensu-plugin/compare/v1.4.2...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugin/compare/v1.4.3...HEAD +[v1.4.3]: https://github.com/sensu-plugins/sensu-plugin/compare/v1.4.2...v1.4.3 [v1.4.2]: https://github.com/sensu-plugins/sensu-plugin/compare/v1.4.1...v1.4.2 [v1.4.1]: https://github.com/sensu-plugins/sensu-plugin/compare/v1.4.0...v1.4.1 [v1.4.0]: https://github.com/sensu-plugins/sensu-plugin/compare/v1.3.0...v1.4.0 diff --git a/lib/sensu-plugin.rb b/lib/sensu-plugin.rb index f1bc277..566ae96 100644 --- a/lib/sensu-plugin.rb +++ b/lib/sensu-plugin.rb @@ -1,6 +1,6 @@ module Sensu module Plugin - VERSION = "1.4.2" + VERSION = "1.4.3" EXIT_CODES = { 'OK' => 0, 'WARNING' => 1,