From 375cd78b1d811bd00b22b3239c9f34568516c9a6 Mon Sep 17 00:00:00 2001 From: Ben Abrams Date: Thu, 16 May 2019 19:44:14 -0700 Subject: [PATCH] prep for 4.1.0 release Signed-off-by: Ben Abrams --- CHANGELOG.md | 7 ++++++- lib/sensu-plugins-slack/version.rb | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 732bc41..2a92493 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins ## [Unreleased] +## [4.1.0]- 2019-05-16 +### Added +- `handler-slack`: added `webhook_retries` (default: 5), `webhook_timeout` (default: 10), and `webhook_retry_sleep` configuration properties to harden against failures due to networking, rate limits, etc. (@kali-brandwatch) + ## [4.0.0] - 2019-04-02 ### Breaking Changes - Bump sensu-plugin version from `~> 2.0` to `~> 4.0` for Sensu 1.x to Sensu Go event conversion you can read the changelog entries for [4.0](https://github.com/sensu-plugins/sensu-plugin/blob/master/CHANGELOG.md#400---2018-02-17) and [3.0](https://github.com/sensu-plugins/sensu-plugin/blob/master/CHANGELOG.md#300---2018-12-04) @@ -134,7 +138,8 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins ### Added - initial release -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-slack/compare/4.0.0...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-slack/compare/4.1.0...HEAD +[4.1.0]: https://github.com/sensu-plugins/sensu-plugins-slack/compare/4.0.0..4.1.0 [4.0.0]: https://github.com/sensu-plugins/sensu-plugins-slack/compare/3.1.1...4.0.0 [3.1.1]: https://github.com/sensu-plugins/sensu-plugins-slack/compare/3.1.0...3.1.1 [3.1.0]: https://github.com/sensu-plugins/sensu-plugins-slack/compare/3.0.0...3.1.0 diff --git a/lib/sensu-plugins-slack/version.rb b/lib/sensu-plugins-slack/version.rb index c254d07..f51a03d 100644 --- a/lib/sensu-plugins-slack/version.rb +++ b/lib/sensu-plugins-slack/version.rb @@ -1,7 +1,7 @@ module SensuPluginsSlack module Version MAJOR = 4 - MINOR = 0 + MINOR = 1 PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')