diff --git a/CHANGELOG.md b/CHANGELOG.md index f09aed2..028d89b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [3.3.1](https://github.com/puppetlabs/vmpooler/tree/3.3.1) (2023-08-18) + +[Full Changelog](https://github.com/puppetlabs/vmpooler/compare/3.3.0...3.3.1) + +**Implemented enhancements:** + +- \(POD-10\) Log reason for failed VM checks. [\#611](https://github.com/puppetlabs/vmpooler/pull/611) ([isaac-hammes](https://github.com/isaac-hammes)) + +**Closed issues:** + +- Log reason connection on port 22 of a failed VM [\#609](https://github.com/puppetlabs/vmpooler/issues/609) + ## [3.3.0](https://github.com/puppetlabs/vmpooler/tree/3.3.0) (2023-08-16) [Full Changelog](https://github.com/puppetlabs/vmpooler/compare/3.2.0...3.3.0) diff --git a/Gemfile.lock b/Gemfile.lock index 59fe3b6..e58d047 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - vmpooler (3.3.0) + vmpooler (3.3.1) concurrent-ruby (~> 1.1) connection_pool (~> 2.4) deep_merge (~> 1.2) @@ -185,6 +185,7 @@ GEM PLATFORMS universal-java-11 + x86_64-darwin-22 x86_64-linux DEPENDENCIES diff --git a/lib/vmpooler/version.rb b/lib/vmpooler/version.rb index af71ac2..dc6b61c 100644 --- a/lib/vmpooler/version.rb +++ b/lib/vmpooler/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Vmpooler - VERSION = '3.3.0' + VERSION = '3.3.1' end