Merge pull request #567 from puppetlabs/release_prep

3.0.0 release prep
This commit is contained in:
Jake Spain 2023-03-28 17:25:58 -04:00 committed by GitHub
commit 1406acf46a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 13 additions and 4 deletions

View file

@ -4,7 +4,7 @@ updates:
directory: "/" directory: "/"
schedule: schedule:
interval: weekly interval: weekly
open-pull-requests-limit: 10\ open-pull-requests-limit: 10
- package-ecosystem: github-actions - package-ecosystem: github-actions
directory: "/" directory: "/"

View file

@ -1,5 +1,14 @@
# Changelog # 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) ## [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) [Full Changelog](https://github.com/puppetlabs/vmpooler/compare/2.4.0...2.5.0)

View file

@ -1,7 +1,7 @@
PATH PATH
remote: . remote: .
specs: specs:
vmpooler (2.5.0) vmpooler (3.0.0)
concurrent-ruby (~> 1.1) concurrent-ruby (~> 1.1)
connection_pool (~> 2.2) connection_pool (~> 2.2)
deep_merge (~> 1.2) deep_merge (~> 1.2)
@ -32,7 +32,7 @@ GEM
climate_control (1.2.0) climate_control (1.2.0)
coderay (1.1.3) coderay (1.1.3)
concurrent-ruby (1.2.2) concurrent-ruby (1.2.2)
connection_pool (2.3.0) connection_pool (2.4.0)
deep_merge (1.2.2) deep_merge (1.2.2)
diff-lcs (1.5.0) diff-lcs (1.5.0)
docile (1.4.0) docile (1.4.0)

View file

@ -1,5 +1,5 @@
# frozen_string_literal: true # frozen_string_literal: true
module Vmpooler module Vmpooler
VERSION = '2.5.0' VERSION = '3.0.0'
end end