Skip to content

Commit

Permalink
Merge pull request #271 from dblock/ruby-3.2.0
Browse files Browse the repository at this point in the history
Added Ruby 3.2.
  • Loading branch information
dblock committed Feb 16, 2023
2 parents f9374aa + 90bab91 commit 10a0b41
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Expand Up @@ -8,13 +8,16 @@ 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' }
- { ruby: 'jruby-9.3' }
- { 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
Expand Down
3 changes: 2 additions & 1 deletion 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)
Expand Down
2 changes: 1 addition & 1 deletion 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

Expand Down
2 changes: 1 addition & 1 deletion lib/hyperclient/version.rb
@@ -1,3 +1,3 @@
module Hyperclient
VERSION = '1.0.2'.freeze
VERSION = '1.1.0'.freeze
end

0 comments on commit 10a0b41

Please sign in to comment.