Skip to content

Commit b4d4482

Browse files
committed
prep for 7.1.0 release
1 parent edfb0d3 commit b4d4482

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44
This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/)
55

66
## [Unreleased]
7+
8+
## [7.1.0] - 2017-08-14
79
### Added
810
- Add `check-alb-target-group-health.rb` that checks the health of ALB target groups (@eheydrick)
911

@@ -13,7 +15,7 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
1315
- check-cloudwatch-metric.rb: short option `-n` was conflicting with `no_data_ok` and `namespace` as `check-cloudwatch-composite-metric.rb` uses `-O` I opted for that for consistency (@majormoses)
1416

1517
### Changed
16-
- check-cloudwatch-metric.rb, check-cloudwatch-composite-metric.rb: `self.parse_dimensions` and `dimension_string` were the same in both checks This fix was common mamong both checks so I moved it into the module
18+
- check-cloudwatch-metric.rb, check-cloudwatch-composite-metric.rb: `self.parse_dimensions` and `dimension_string` were the same in both checks. This fix was common among both checks so I moved it into the module
1719

1820
## [7.0.0] - 2017-08-07
1921
### Breaking Change
@@ -346,7 +348,8 @@ WARNING: This release contains major breaking changes that will impact all user
346348
### Added
347349
- initial release
348350

349-
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/7.0.1...HEAD
351+
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/7.1.0...HEAD
352+
[7.1.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/7.0.1...7.1.0
350353
[7.0.1]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/7.0.0...7.0.1
351354
[7.0.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/6.3.0...7.0.0
352355
[6.3.0]: https://github.com/sensu-plugins/sensu-plugins-aws/compare/6.2.0...6.3.0

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 = 7
4-
MINOR = 0
5-
PATCH = 1
4+
MINOR = 1
5+
PATCH = 0
66
VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
77
end
88
end

0 commit comments

Comments
 (0)