diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 930e7f1..d531776 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,6 +8,7 @@ jobs: fail-fast: false matrix: entry: + - { ruby: '3.2' } - { ruby: '2.7', faraday: '0.9.0' } - { ruby: '2.7', faraday: '0.17.0' } - { ruby: '2.7', faraday: '~> 1.0' } @@ -15,6 +16,8 @@ jobs: - { ruby: 'ruby-head', allowed-failure: true } - { ruby: 'jruby-head', allowed-failure: true } name: test (${{ matrix.entry.ruby }}, ${{ matrix.entry.faraday || 'default' }}) + env: + FARADAY_VERSION: ${{ matrix.entry.faraday }} steps: - uses: actions/checkout@v3 - uses: ruby/setup-ruby@v1 diff --git a/CHANGELOG.md b/CHANGELOG.md index ca43a11..d6d7f27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,11 @@ ## Changelog -### 1.0.2 (Next) +### 1.1.0 (Next) * [#268](https://github.com/codegram/hyperclient/pull/268): Replace Travis-CI with GHA - [@dblock](https://github.com/dblock). * [#269](https://github.com/codegram/hyperclient/pull/269): Re-add code coverage - [@dblock](https://github.com/dblock). * [#270](https://github.com/codegram/hyperclient/pull/270): Upgrade Rubocop to 1.45 - [@dblock](https://github.com/dblock). +* [#271](https://github.com/codegram/hyperclient/pull/271): Test against Ruby 3.2 - [@dblock](https://github.com/dblock). * Your contribution here. ### 1.0.1 (2021/01/02) diff --git a/Gemfile b/Gemfile index a9c1e94..c61e3bb 100644 --- a/Gemfile +++ b/Gemfile @@ -1,6 +1,6 @@ source 'https://rubygems.org' -gem 'faraday', ENV['FARADAY_VERSION'] if ENV.key?('FARADAY_VERSION') +gem 'faraday', ENV['FARADAY_VERSION'] if ENV['FARADAY_VERSION'] && !ENV['FARADAY_VERSION'].empty? gemspec diff --git a/lib/hyperclient/version.rb b/lib/hyperclient/version.rb index 83b1978..46f95c0 100644 --- a/lib/hyperclient/version.rb +++ b/lib/hyperclient/version.rb @@ -1,3 +1,3 @@ module Hyperclient - VERSION = '1.0.2'.freeze + VERSION = '1.1.0'.freeze end