Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
Signed-off-by: Ashique P S <[email protected]>
  • Loading branch information
ashiqueps committed Mar 1, 2023
1 parent 81bc5e3 commit 0314a5c
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 7 deletions.
6 changes: 2 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,9 @@ cache: bundler
sudo: false

rvm:
- 2.3.8
- 2.4.9
- 2.5.7
- 2.6.5
- 2.7.0
- 3.0.0
- 3.1.0
- ruby-head

matrix:
Expand Down
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
# Unreleased
# Change Log

# 1.0.0 / 2023-03-02

* Support for Ruby 3.0 and 3.1
* PR [#86](https://github.com/test-kitchen/kitchen-rackspace/pull/86) - Support for Test Kitchen 3.0; via [@tas50](https://github.com/tas50)
* PR [#84](https://github.com/test-kitchen/kitchen-rackspace/pull/84) - Optimize our requires; via [@tas50](https://github.com/tas50)
* PR [#82](https://github.com/test-kitchen/kitchen-rackspace/pull/82) - Unpin the bundler dev dep; via [@tas50](https://github.com/tas50)
* PR [#76](https://github.com/test-kitchen/kitchen-rackspace/pull/76) - Remove gemnasium badge; via [@tas50](https://github.com/tas50)
* PR [#77](https://github.com/test-kitchen/kitchen-rackspace/pull/77) - Use fog-rackspace instead of the monolithic fog gem ; via [@tas50](https://github.com/tas50)
* PR [#62](https://github.com/test-kitchen/kitchen-rackspace/pull/62) - Add support for setting region via ENV; via [@DavidWittman](https://github.com/DavidWittman)
* PR [#75](https://github.com/test-kitchen/kitchen-rackspace/pull/75) - Add support for user_data and config_drive options; via [@hartmantis](https://github.com/hartmantis)
* PR [#72](https://github.com/test-kitchen/kitchen-rackspace/pull/72) - Image data update and script fixes; via [@martinb3](https://github.com/martinb3)


# 0.21.0 / 2016-05-31

Expand Down
5 changes: 4 additions & 1 deletion kitchen-rackspace.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,12 @@ Gem::Specification.new do |spec|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = %w[lib]

spec.required_ruby_version = '>= 2.5'
spec.required_ruby_version = '>= 2.7'

spec.add_dependency 'fog-rackspace', '~> 0.1'
# there is a bug in 2.3.0 which is causing the fog/rackspace gem to fail.
# We can remove this once https://github.com/fog/fog-core/issues/279 is fixed.
spec.add_dependency 'fog-core', '~> 2.2.0'
spec.add_dependency 'test-kitchen', '>= 1.1', '< 4.0'

spec.add_development_dependency 'coveralls', '~> 0.8'
Expand Down
2 changes: 1 addition & 1 deletion lib/kitchen/driver/rackspace_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ module Kitchen
#
# @author Jonathan Hartman <[email protected]>
module Driver
RACKSPACE_VERSION = '0.21.1.dev'.freeze
RACKSPACE_VERSION = '1.0.0'.freeze
end
end

0 comments on commit 0314a5c

Please sign in to comment.