From 1f8e867a79e296971d241ccfa0ec461372c61c68 Mon Sep 17 00:00:00 2001 From: Jef Spaleta Date: Thu, 9 May 2019 18:46:11 -0800 Subject: [PATCH] Preparing for 4.2.0 release --- CHANGELOG.md | 7 +++++-- lib/sensu-plugins-redis/version.rb | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5362417..729647e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ This CHANGELOG follows the format listed at [Our CHANGELOG Guidelines](https://g Which is based on [Keep A Changelog](http://keepachangelog.com/) ## [Unreleased] + +## [4.2.0] - 2019-05-09 ### Added - Travis build automation to generate Sensu Asset tarballs that can be used n conjunction with Sensu provided ruby runtime assets and the Bonsai Asset Index @@ -174,8 +176,9 @@ Which is based on [Keep A Changelog](http://keepachangelog.com/) ### Added - initial release -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-redis/compare/4.1.0...HEAD -[4.1.0]: https://github.com/sensu-plugins/sensu-plugins-redis/compare/4.0.0...4.0.0 +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-redis/compare/4.2.0...HEAD +[4.2.0]: https://github.com/sensu-plugins/sensu-plugins-redis/compare/4.1.0...4.2.0 +[4.1.0]: https://github.com/sensu-plugins/sensu-plugins-redis/compare/4.0.0...4.1.0 [4.0.0]: https://github.com/sensu-plugins/sensu-plugins-redis/compare/3.1.1...4.0.0 [3.1.1]: https://github.com/sensu-plugins/sensu-plugins-redis/compare/3.1.0...3.1.1 [3.1.0]: https://github.com/sensu-plugins/sensu-plugins-redis/compare/3.0.1...3.1.0 diff --git a/lib/sensu-plugins-redis/version.rb b/lib/sensu-plugins-redis/version.rb index 492a793..2032113 100644 --- a/lib/sensu-plugins-redis/version.rb +++ b/lib/sensu-plugins-redis/version.rb @@ -3,7 +3,7 @@ module SensuPluginsRedis module Version MAJOR = 4 - MINOR = 1 + MINOR = 2 PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')