From 8af385cdb96aa24610ea4f6697833be400c60941 Mon Sep 17 00:00:00 2001 From: Sous Chefs Bot <33356041+kitchen-porter@users.noreply.github.com> Date: Sat, 22 Jun 2024 06:29:17 +0800 Subject: [PATCH] chore(main): release 6.2.1 (#229) * chore(main): release 6.2.1 --------- Signed-off-by: Corey Hemminger Co-authored-by: Corey Hemminger --- .github/dependabot.yml | 11 ++++--- .markdownlint.yaml | 1 + .release-please-manifest.json | 2 +- .rubocop.yml | 2 +- CHANGELOG.md | 9 +++++- README.md | 43 +++++++------------------ lib/kitchen/driver/openstack_version.rb | 2 +- 7 files changed, 30 insertions(+), 40 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 452ebb3..7062856 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,7 +1,8 @@ +--- version: 2 updates: -- package-ecosystem: bundler - directory: "/" - schedule: - interval: daily - open-pull-requests-limit: 10 + - package-ecosystem: bundler + directory: "/" + schedule: + interval: daily + open-pull-requests-limit: 10 diff --git a/.markdownlint.yaml b/.markdownlint.yaml index 9fd2375..fede2e4 100644 --- a/.markdownlint.yaml +++ b/.markdownlint.yaml @@ -3,4 +3,5 @@ default: true MD004: false MD012: false MD013: false +MD022: false MD024: false diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e1e352c..9b2cc73 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "6.2.0" + ".": "6.2.1" } diff --git a/.rubocop.yml b/.rubocop.yml index 0683d3c..8fd406e 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -3,7 +3,7 @@ require: - chefstyle AllCops: - TargetRubyVersion: 3.1 + TargetRubyVersion: 3.1 Include: - "**/*.rb" Exclude: diff --git a/CHANGELOG.md b/CHANGELOG.md index b0918f7..009070f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## [6.2.1](https://github.com/test-kitchen/kitchen-openstack/compare/v6.2.0...v6.2.1) (2024-06-21) + + +### Bug Fixes + +* release please configs ([#228](https://github.com/test-kitchen/kitchen-openstack/issues/228)) ([cbb2736](https://github.com/test-kitchen/kitchen-openstack/commit/cbb27362313150d6be7de0d356affbc3069101bb)) + ## [v6.2.0](https://github.com/test-kitchen/kitchen-openstack/tree/v6.2.0) [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v6.1.0..v6.2.0) @@ -14,7 +21,7 @@ ## [v6.0.0](https://github.com/test-kitchen/kitchen-openstack/tree/v6.0.0) - Require Ruby 2.6 or later and add testing for Ruby 3.0 -- Add a new `cloud_config` option which allows you to pass data to cloud-init. See https://github.com/test-kitchen/kitchen-openstack#cloud_config for usage information. Thanks [@JimScadden](https://github.com/JimScadden) +- Add a new `cloud_config` option which allows you to pass data to cloud-init. See for usage information. Thanks [@JimScadden](https://github.com/JimScadden) ## [v5.0.1](https://github.com/test-kitchen/kitchen-openstack/tree/v5.0.1) diff --git a/README.md b/README.md index f00951f..c188733 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ -# Kitchen::OpenStack: A Test Kitchen Driver for OpenStack +# Kitchen::OpenStack -[![Gem Version](https://img.shields.io/gem/v/kitchen-openstack.svg)][gem] +![Gem Version](https://img.shields.io/gem/v/kitchen-openstack.svg) ![CI](https://github.com/test-kitchen/kitchen-openstack/workflows/CI/badge.svg) -A [Test Kitchen][kitchen_ci] Driver for [OpenStack][openstack_web]. +A Test Kitchen Driver for OpenStack. -This driver uses the [fog gem][fog_web] to provision and destroy nova instances. Use an OpenStack cloud for your infrastructure testing! +This driver uses the fog gem to provision and destroy nova instances. Use an OpenStack cloud for your infrastructure testing! Shamelessly copied from [Fletcher Nichol](https://github.com/fnichol)'s awesome work on an [EC2 driver](https://github.com/test-kitchen/kitchen-ec2), and [Adam Leff](https://github.com/adamleff)'s amazing work on an [VRO driver](https://github.com/chef-partners/kitchen-vro). @@ -34,23 +34,20 @@ gem 'kitchen-openstack' And then execute: ```bash -$ bundle +bundle ``` Or install it yourself as: ```bash -$ gem install kitchen-openstack +gem install kitchen-openstack ``` ## Usage -See https://kitchen.ci/docs/drivers/openstack/ for documentation. +See for documentation. -## Development - -* Source hosted at [GitHub][repo] -* Report issues/questions/feature requests on [GitHub Issues][issues] +## Development Pull requests are very welcome! Make sure your patches are well tested. Ideally create a topic branch for every separate change you make. For @@ -63,26 +60,10 @@ example: 5. Push to the branch (`git push origin my-new-feature`) 6. Create new Pull Request -## Authors - -Created by [Jonathan Hartman][author] () -and maintained by [JJ Asghar][maintainer] () - -## License - -Apache 2.0 (see [LICENSE][license]) - +## Authors -[gem]: https://rubygems.org/gems/kitchen-openstack +Created by Jonathan Hartman -[author]: https://github.com/RoboticCheese -[maintainer]: https://github.com/jjasghar -[issues]: https://github.com/test-kitchen/kitchen-openstack/issues -[license]: https://github.com/test-kitchen/kitchen-openstack/blob/master/LICENSE.txt -[repo]: https://github.com/test-kitchen/kitchen-openstack -[driver_usage]: https://github.com/test-kitchen/kitchen-openstack -[chef_omnibus_dl]: https://downloads.chef.io/tools/infra-client -[kitchen_ci]: http://kitchen.ci +## License -[openstack_web]: http://www.openstack.org -[fog_web]: http://fog.io +Apache 2.0 (see LICENSE.txt file) diff --git a/lib/kitchen/driver/openstack_version.rb b/lib/kitchen/driver/openstack_version.rb index 60feaf6..2236ec2 100644 --- a/lib/kitchen/driver/openstack_version.rb +++ b/lib/kitchen/driver/openstack_version.rb @@ -23,6 +23,6 @@ module Kitchen # # @author Jonathan Hartman module Driver - OPENSTACK_VERSION = "6.2.0" + OPENSTACK_VERSION = "6.2.1" end end