From e1c2bf033cd9a590e46db3a59cbb52fa97052595 Mon Sep 17 00:00:00 2001 From: Ben Abrams Date: Sat, 20 Jan 2018 14:16:36 -0800 Subject: [PATCH] prep for 10.2.0 release --- CHANGELOG.md | 5 ++++- lib/sensu-plugins-aws/version.rb | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c02c5364..9a3cf2a6 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 [here](https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md) ## [Unreleased] + +## [10.2.0] - 2018-01-20 ### Added - `check-s3-bucket-visiblity.rb` - checks an S3 bucket for existence of a website configuration or bucket policy containing `Get*`, `List*` or `*` statements. (@rhussmann) @@ -425,7 +427,8 @@ WARNING: This release contains major breaking changes that will impact all user ### Added - initial release -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/10.1.1...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/10.2.0...HEAD +[10.2.0]:https://github.com/sensu-plugins/sensu-plugins-aws/compare/10.1.2...10.2.0 [10.1.2]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/10.1.1...10.1.2 [10.1.1]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/10.1.0...10.1.1 [10.1.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/10.1.0...10.0.3 diff --git a/lib/sensu-plugins-aws/version.rb b/lib/sensu-plugins-aws/version.rb index e84a2eca..2d8b0ed4 100644 --- a/lib/sensu-plugins-aws/version.rb +++ b/lib/sensu-plugins-aws/version.rb @@ -1,8 +1,8 @@ module SensuPluginsAWS module Version MAJOR = 10 - MINOR = 1 - PATCH = 2 + MINOR = 2 + PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end end