diff --git a/CHANGELOG.md b/CHANGELOG.md index 10876286..e8249e38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## [v3.8.0](https://github.com/test-kitchen/kitchen-ec2/tree/v3.8.0) (2020-10-14) +[Full Changelog](https://github.com/test-kitchen/kitchen-ec2/compare/v3.7.2..v3.8.0) + +- Allow multiple ip addresses to be specified when creating a security group [#509](https://github.com/test-kitchen/kitchen-ec2/pull/509) ([trainsushi](https://github.com/trainsushi)) +- Use defaults when creating spot instances - fixes block_duration_minutes [#512](https://github.com/test-kitchen/kitchen-ec2/pull/512) ([clintoncwolfe](https://github.com/clintoncwolfe)) + + ## [v3.7.2](https://github.com/test-kitchen/kitchen-ec2/tree/v3.7.2) (2020-09-29) [Full Changelog](https://github.com/test-kitchen/kitchen-ec2/compare/v3.7.1..v3.7.2) diff --git a/lib/kitchen/driver/ec2_version.rb b/lib/kitchen/driver/ec2_version.rb index ae4d108f..5cdbdd8c 100644 --- a/lib/kitchen/driver/ec2_version.rb +++ b/lib/kitchen/driver/ec2_version.rb @@ -21,6 +21,6 @@ module Kitchen module Driver # Version string for EC2 Test Kitchen driver - EC2_VERSION = "3.7.2".freeze + EC2_VERSION = "3.8.0".freeze end end