diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b52515a..6923c345 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ 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] +## [18.5.0] - 2020-01-28 ### Changed - `check-trustedadvisor-service-limits.rb`: Trusted Advisor combined Service Limits check ID 'eW7HH0l7J9' scheduled to be disabled on Feb 15 2020. Updated the script to go through every Service Limits checks and look for not 'ok' status. Outcome is the same. (@swibowo) - bumped version of `bundler` when installing to match travis, before installing dep ensure we have a required version of bundler for development (@majormoses) @@ -598,7 +599,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/18.4.2...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/18.5.0...HEAD +[18.5.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/18.4.2...18.5.0 [18.4.2]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/18.4.1...18.4.2 [18.4.1]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/18.4.0...18.4.1 [18.4.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/18.3.0...18.4.0 diff --git a/lib/sensu-plugins-aws/version.rb b/lib/sensu-plugins-aws/version.rb index 7a91c4f6..2f62b0d2 100644 --- a/lib/sensu-plugins-aws/version.rb +++ b/lib/sensu-plugins-aws/version.rb @@ -1,8 +1,8 @@ module SensuPluginsAWS module Version MAJOR = 18 - MINOR = 4 - PATCH = 2 + MINOR = 5 + PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end end