Skip to content

Commit 6fe7007

Browse files
Release 4.2.0
1 parent eb79889 commit 6fe7007

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/publish-ruby.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ jobs:
1919
test:
2020
strategy:
2121
matrix:
22-
ruby-version: ['2.4.1']
22+
ruby-version: ['3.0.0', '3.1.0']
2323
runs-on: ubuntu-latest
2424
steps:
2525
- uses: actions/checkout@v3
2626
- name: Set up Ruby
2727
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
2828
# change this to (see https://github.com/ruby/setup-ruby#versioning):
29-
uses: ruby/setup-ruby@2b019609e2b0f1ea1a2bc8ca11cb82ab46ada124
29+
uses: ruby/setup-ruby@v1
3030
with:
3131
ruby-version: ${{ matrix.ruby-version }}
3232
bundler-cache: true # runs 'bundle install' and caches installed gems automatically

Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ source 'https://rubygems.org'
33
gemspec
44

55
group :development, :test do
6-
gem 'rake', '~> 12.3.3'
7-
gem 'test-unit', '~> 3.2.5'
6+
gem 'rake', '~> 13.0.3'
7+
gem 'test-unit', '~> 3.3.9'
88
end

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The wallee Ruby library wraps around the wallee API. This library facilitates yo
88

99
## Requirements
1010

11-
- Ruby 2.2+
11+
- Ruby 3.0.0+
1212

1313
## Installation
1414

lib/wallee-ruby-sdk/api_client.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def build_request(http_method, path, opts = {})
102102
http_method = http_method.to_sym.downcase
103103

104104
default_headers = {
105-
'x-meta-sdk-version': "4.1.0",
105+
'x-meta-sdk-version': "4.2.0",
106106
'x-meta-sdk-language': "ruby",
107107
'x-meta-sdk-provider': "wallee",
108108
'x-meta-sdk-language-version': RUBY_VERSION

lib/wallee-ruby-sdk/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@
1616
=end
1717

1818
module Wallee
19-
VERSION = '4.1.0'
19+
VERSION = '4.2.0'
2020
end

0 commit comments

Comments
 (0)