From 8f5ccd39a45f2e53418f0bbc820423df900c6d79 Mon Sep 17 00:00:00 2001 From: Ben Abrams Date: Sun, 21 May 2017 11:58:44 -0700 Subject: [PATCH] prep for 1.1.1 release --- CHANGELOG.md | 6 ++++-- lib/sensu-plugins-logs/version.rb | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 28e849e..a397ef1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,9 @@ This project adheres to [Semantic Versioning](http://semver.org/). This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/) ## [Unreleased] +## [1.1.1] - 2017-05-21 ### Changed -- `check-log.rb`: Fix 'crit' and 'warn' flags being ignored in search_log +- `check-log.rb`: Fix 'crit' and 'warn' flags being ignored in search_log (@avifried1) ## [1.1.0] - 2017-05-20 ### Added @@ -43,7 +44,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang ### Added - initial release -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-logs/compare/1.1.0...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-logs/compare/1.1.1...HEAD +[1.1.1]: https://github.com/sensu-plugins/sensu-plugins-logs/compare/1.1.0...1.1.1 [1.1.0]: https://github.com/sensu-plugins/sensu-plugins-logs/compare/1.0.0...1.1.0 [0.0.4]: [1.0.0]: https://github.com/sensu-plugins/sensu-plugins-logs/compare/0.0.4...1.0.0 diff --git a/lib/sensu-plugins-logs/version.rb b/lib/sensu-plugins-logs/version.rb index 3a4e50e..c202ff3 100644 --- a/lib/sensu-plugins-logs/version.rb +++ b/lib/sensu-plugins-logs/version.rb @@ -2,7 +2,7 @@ module SensuPluginsLogs module Version MAJOR = 1 MINOR = 1 - PATCH = 0 + PATCH = 1 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end