From 3112b5f1abeb8976deaf06b98ca5638c33165032 Mon Sep 17 00:00:00 2001 From: Ben Abrams Date: Fri, 4 Aug 2017 10:12:32 -0700 Subject: [PATCH] prep for 1.0.1 release --- .github/PULL_REQUEST_TEMPLATE.md | 3 +-- CHANGELOG.md | 5 ++++- lib/sensu-plugins-xmpp/version.rb | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index e4c3c2b..8821e85 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -12,7 +12,7 @@ - [ ] RuboCop passes -- [ ] Existing tests pass +- [ ] Existing tests pass #### New Plugins @@ -25,4 +25,3 @@ #### Purpose #### Known Compatibility Issues - diff --git a/CHANGELOG.md b/CHANGELOG.md index a96c10e..1cffe72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/) ## [Unreleased] + +## [1.0.1] - 2017-08-04 ### Fixed - check-xmpp-login.rb do not rescue from SystemExit (@ushis) @@ -30,7 +32,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang ### Added - initial release -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-xmpp/compare/1.0.0...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-xmpp/compare/1.0.1...HEAD +[1/0/1]: https://github.com/sensu-plugins/sensu-plugins-xmpp/compare/1.0.0...1.0.1 [1.0.0]: https://github.com/sensu-plugins/sensu-plugins-xmpp/compare/0.0.3...1.0.0 [0.0.3]: https://github.com/sensu-plugins/sensu-plugins-xmpp/compare/0.0.2...0.0.3 [0.0.2]: https://github.com/sensu-plugins/sensu-plugins-xmpp/compare/0.0.1...0.0.2 diff --git a/lib/sensu-plugins-xmpp/version.rb b/lib/sensu-plugins-xmpp/version.rb index ca7ec21..bffc85b 100644 --- a/lib/sensu-plugins-xmpp/version.rb +++ b/lib/sensu-plugins-xmpp/version.rb @@ -2,7 +2,7 @@ module SensuPluginsXmpp module Version MAJOR = 1 MINOR = 0 - PATCH = 0 + PATCH = 1 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end