Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(main): release 6.2.1 #229

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -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
1 change: 1 addition & 0 deletions .markdownlint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ default: true
MD004: false
MD012: false
MD013: false
MD022: false
MD024: false
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "6.2.0"
".": "6.2.1"
}
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ require:
- chefstyle

AllCops:
TargetRubyVersion: 3.1
TargetRubyVersion: 3.1
Include:
- "**/*.rb"
Exclude:
Expand Down
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand All @@ -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 <https://github.com/test-kitchen/kitchen-openstack#cloud_config> for usage information. Thanks [@JimScadden](https://github.com/JimScadden)

## [v5.0.1](https://github.com/test-kitchen/kitchen-openstack/tree/v5.0.1)

Expand Down
43 changes: 12 additions & 31 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# <a name="title"></a> 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).

Expand Down Expand Up @@ -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 <https://kitchen.ci/docs/drivers/openstack/> for documentation.

## <a name="development"></a> 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
Expand All @@ -63,26 +60,10 @@ example:
5. Push to the branch (`git push origin my-new-feature`)
6. Create new Pull Request

## <a name="authors"></a> Authors

Created by [Jonathan Hartman][author] (<[email protected]>)
and maintained by [JJ Asghar][maintainer] (<[email protected]>)

## <a name="license"></a> 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)
2 changes: 1 addition & 1 deletion lib/kitchen/driver/openstack_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ module Kitchen
#
# @author Jonathan Hartman <[email protected]>
module Driver
OPENSTACK_VERSION = "6.2.0"
OPENSTACK_VERSION = "6.2.1"
end
end