From 80839088d45bfe6d35fb487807969dbdaca612a7 Mon Sep 17 00:00:00 2001 From: Ben Abrams Date: Sat, 21 Oct 2017 11:30:22 -0700 Subject: [PATCH] prep for 2.0.0 release --- CHANGELOG.md | 8 +++++--- lib/sensu-plugins-slack/version.rb | 6 +++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ccdf67..c310185 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +4,11 @@ This project adheres to [Semantic Versioning](http://semver.org/). This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/) ## [Unreleased] + +## [2.0.0] - 2017-10-21 ### Breaking Changes -- `handler-slack-multichannel.rb`: Fixed title unknown issue, change from client address to client name +- `handler-slack-multichannel.rb`: Fixed title unknown issue when using proxy clients, change from client address to client name (@autumnw) -## [Unreleased] ## [1.5.1] - 2017-08-18 ### Fixed - `handler-slack-multichannel.rb`: Add param webhook_urls to support one webhook_url per channel (@autumnw) @@ -107,7 +108,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang ### Added - initial release -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-slack/compare/1.5.0...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-slack/compare/2.0.0...HEAD +[2.0.0]: https://github.com/sensu-plugins/sensu-plugins-slack/compare/1.5.0...2.0.0 [1.5.1]: https://github.com/sensu-plugins/sensu-plugins-slack/compare/1.5.0...1.5.1 [1.5.0]: https://github.com/sensu-plugins/sensu-plugins-slack/compare/1.4.0...1.5.0 [1.4.0]: https://github.com/sensu-plugins/sensu-plugins-slack/compare/1.3.0...1.4.0 diff --git a/lib/sensu-plugins-slack/version.rb b/lib/sensu-plugins-slack/version.rb index fc1fd46..6abfc3b 100644 --- a/lib/sensu-plugins-slack/version.rb +++ b/lib/sensu-plugins-slack/version.rb @@ -1,8 +1,8 @@ module SensuPluginsSlack module Version - MAJOR = 1 - MINOR = 5 - PATCH = 1 + MAJOR = 2 + MINOR = 0 + PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end