From 0f7cc7852524acb5fc2f871e10c59a07e5276ccc Mon Sep 17 00:00:00 2001 From: Jake Spain Date: Tue, 28 Mar 2023 16:35:36 -0400 Subject: [PATCH] 3.0.0 release prep --- .github/dependabot.yml | 2 +- CHANGELOG.md | 9 +++++++++ Gemfile.lock | 4 ++-- lib/vmpooler/version.rb | 2 +- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f5fc2e0..4ae585a 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,7 +4,7 @@ updates: directory: "/" schedule: interval: weekly - open-pull-requests-limit: 10\ + open-pull-requests-limit: 10 - package-ecosystem: github-actions directory: "/" diff --git a/CHANGELOG.md b/CHANGELOG.md index 916a9ce..36567ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [3.0.0](https://github.com/puppetlabs/vmpooler/tree/3.0.0) (2023-03-28) + +[Full Changelog](https://github.com/puppetlabs/vmpooler/compare/2.5.0...3.0.0) + +**Breaking changes:** + +- Direct Users to vmpooler-deployment [\#568](https://github.com/puppetlabs/vmpooler/pull/568) ([yachub](https://github.com/yachub)) +- \(RE-15124\) Implement DNS Plugins and Remove api v1 and v2 [\#551](https://github.com/puppetlabs/vmpooler/pull/551) ([yachub](https://github.com/yachub)) + ## [2.5.0](https://github.com/puppetlabs/vmpooler/tree/2.5.0) (2023-03-06) [Full Changelog](https://github.com/puppetlabs/vmpooler/compare/2.4.0...2.5.0) diff --git a/Gemfile.lock b/Gemfile.lock index a05c75b..47e79e4 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - vmpooler (2.5.0) + vmpooler (3.0.0) concurrent-ruby (~> 1.1) connection_pool (~> 2.2) deep_merge (~> 1.2) @@ -32,7 +32,7 @@ GEM climate_control (1.2.0) coderay (1.1.3) concurrent-ruby (1.2.2) - connection_pool (2.3.0) + connection_pool (2.4.0) deep_merge (1.2.2) diff-lcs (1.5.0) docile (1.4.0) diff --git a/lib/vmpooler/version.rb b/lib/vmpooler/version.rb index d0b8501..751be5e 100644 --- a/lib/vmpooler/version.rb +++ b/lib/vmpooler/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Vmpooler - VERSION = '2.5.0' + VERSION = '3.0.0' end