From d414402c038303307a8c4591ac6e30c15deb6dfb Mon Sep 17 00:00:00 2001 From: Ben Abrams Date: Mon, 28 Aug 2017 22:25:20 -0700 Subject: [PATCH] prep for 8.1.0 release --- CHANGELOG.md | 3 +++ lib/sensu-plugins-aws/version.rb | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f9855f2..25b83834 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] + +## [8.1.0] - 2017-08-28 ### Fixed check-ebs-burst-limit.rb: Only compare the warning threshold if a `-w` option was specified on the command-line, as usage shows `-w` is optional. (@ivanfetch) @@ -358,6 +360,7 @@ WARNING: This release contains major breaking changes that will impact all user - initial release [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/8.0.0...HEAD +[8.1.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/8.0.0...8.1.0 [8.0.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/7.1.0...8.0.0 [7.1.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/7.0.1...7.1.0 [7.0.1]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/7.0.0...7.0.1 diff --git a/lib/sensu-plugins-aws/version.rb b/lib/sensu-plugins-aws/version.rb index 9097ec86..2a5131e2 100644 --- a/lib/sensu-plugins-aws/version.rb +++ b/lib/sensu-plugins-aws/version.rb @@ -1,7 +1,7 @@ module SensuPluginsAWS module Version MAJOR = 8 - MINOR = 0 + MINOR = 1 PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end