Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: codegram/hyperclient
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4f68c63275053b465976bcfc05bd6a40452e5f6d
Choose a base ref
..
head repository: codegram/hyperclient
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 90bab91e43ef8a7a3d54ea845bf6eeb8d165b3d6
Choose a head ref
Showing with 5 additions and 4 deletions.
  1. +2 −2 .github/workflows/test.yml
  2. +2 −1 CHANGELOG.md
  3. +1 −1 lib/hyperclient/version.rb
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -16,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
@@ -24,5 +26,3 @@ jobs:
bundler-cache: true
- run: bundle exec rake test spinach
continue-on-error: ${{ matrix.entry.allowed-failure || false }}
env:
FARADAY_VERSION: ${{ matrix.entry.faraday }}
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
2 changes: 1 addition & 1 deletion lib/hyperclient/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Hyperclient
VERSION = '1.0.2'.freeze
VERSION = '1.1.0'.freeze
end