1.9.0 release prep

This commit is contained in:
Jake Spain 2024-01-19 19:56:35 +00:00
parent b1a647eb86
commit 870ec4dd00
3 changed files with 29 additions and 2 deletions

View file

@ -1,5 +1,32 @@
# Changelog # Changelog
## [1.9.0](https://github.com/puppetlabs/vmfloaty/tree/1.9.0) (2024-01-19)
[Full Changelog](https://github.com/puppetlabs/vmfloaty/compare/1.8.1...1.9.0)
**Implemented enhancements:**
- Bump ruby from 3.2.2-slim-bullseye to 3.3.0-slim-bullseye [\#207](https://github.com/puppetlabs/vmfloaty/pull/207) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump rubocop from 1.58.0 to 1.59.0 [\#206](https://github.com/puppetlabs/vmfloaty/pull/206) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump rubocop from 1.56.4 to 1.58.0 [\#203](https://github.com/puppetlabs/vmfloaty/pull/203) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump rake from 13.0.6 to 13.1.0 [\#201](https://github.com/puppetlabs/vmfloaty/pull/201) ([dependabot[bot]](https://github.com/apps/dependabot))
**Merged pull requests:**
- Bump actions/setup-java from 3 to 4 [\#204](https://github.com/puppetlabs/vmfloaty/pull/204) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump actions/github-script from 6 to 7 [\#202](https://github.com/puppetlabs/vmfloaty/pull/202) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump rubocop from 1.56.3 to 1.56.4 [\#198](https://github.com/puppetlabs/vmfloaty/pull/198) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump docker/login-action from 2 to 3 [\#197](https://github.com/puppetlabs/vmfloaty/pull/197) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump docker/setup-buildx-action from 2 to 3 [\#196](https://github.com/puppetlabs/vmfloaty/pull/196) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump docker/build-push-action from 4 to 5 [\#195](https://github.com/puppetlabs/vmfloaty/pull/195) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump actions/checkout from 3 to 4 [\#194](https://github.com/puppetlabs/vmfloaty/pull/194) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump rubocop from 1.56.2 to 1.56.3 [\#193](https://github.com/puppetlabs/vmfloaty/pull/193) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump rubocop from 1.56.1 to 1.56.2 [\#192](https://github.com/puppetlabs/vmfloaty/pull/192) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump webmock from 3.19.0 to 3.19.1 [\#191](https://github.com/puppetlabs/vmfloaty/pull/191) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump webmock from 3.18.1 to 3.19.0 [\#190](https://github.com/puppetlabs/vmfloaty/pull/190) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump rubocop from 1.56.0 to 1.56.1 [\#189](https://github.com/puppetlabs/vmfloaty/pull/189) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump rubocop from 1.55.1 to 1.56.0 [\#188](https://github.com/puppetlabs/vmfloaty/pull/188) ([dependabot[bot]](https://github.com/apps/dependabot))
## [1.8.1](https://github.com/puppetlabs/vmfloaty/tree/1.8.1) (2023-08-07) ## [1.8.1](https://github.com/puppetlabs/vmfloaty/tree/1.8.1) (2023-08-07)
[Full Changelog](https://github.com/puppetlabs/vmfloaty/compare/1.8.0...1.8.1) [Full Changelog](https://github.com/puppetlabs/vmfloaty/compare/1.8.0...1.8.1)

View file

@ -1,7 +1,7 @@
PATH PATH
remote: . remote: .
specs: specs:
vmfloaty (1.8.1) vmfloaty (1.9.0)
commander (>= 4.4.3, < 4.7.0) commander (>= 4.4.3, < 4.7.0)
faraday (~> 1.5, >= 1.5.1) faraday (~> 1.5, >= 1.5.1)

View file

@ -1,5 +1,5 @@
# frozen_string_literal: true # frozen_string_literal: true
class Vmfloaty class Vmfloaty
VERSION = '1.8.1' VERSION = '1.9.0'
end end