Skip to content

Commit c89d896

Browse files
committed
prep for 10.1.0 release
1 parent 323d246 commit c89d896

2 files changed

Lines changed: 8 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44
This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md)
55

66
## [Unreleased]
7-
- check-cloudwatch-composite-metric.rb: add flags `zero_denominator_data_ok`, `no_denominator_data_ok`, and `numerator_default` to add ability to allow numerator in composite to be 0. While leaving the functionality of `no_data_ok` the same, this change allows us to check to alert if the numerator has no data since 0/X is a valid alert case.
8-
- lib/cloudwatch-common.rb: added tests for majority of functions
7+
8+
## [10.1.0] - 2018-01-06
9+
- check-cloudwatch-composite-metric.rb: add flags `zero_denominator_data_ok`, `no_denominator_data_ok`, and `numerator_default` to add ability to allow numerator in composite to be 0. While leaving the functionality of `no_data_ok` the same, this change allows us to check to alert if the numerator has no data since 0/X is a valid alert case. (@zbintliff)
10+
- lib/cloudwatch-common.rb: added tests for majority of functions (@zbintliff)
911

1012
## [10.0.3] - 2017-12-03
1113
### Fixed
@@ -408,7 +410,8 @@ WARNING: This release contains major breaking changes that will impact all user
408410
### Added
409411
- initial release
410412

411-
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/10.0.3...HEAD
413+
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/10.1.0...HEAD
414+
[10.1.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/10.1.0...10.0.3
412415
[10.0.3]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/10.0.2...10.0.3
413416
[10.0.2]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/10.0.1...10.0.2
414417
[10.0.1]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/10.0.0...10.0.1

lib/sensu-plugins-aws/version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module SensuPluginsAWS
22
module Version
33
MAJOR = 10
4-
MINOR = 0
5-
PATCH = 3
4+
MINOR = 1
5+
PATCH = 0
66
VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
77
end
88
end

0 commit comments

Comments
 (0)