Skip to content

Commit

Permalink
Release 4.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wallee-deployment-user committed Jan 19, 2024
1 parent eb79889 commit 6fe7007
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ jobs:
test:
strategy:
matrix:
ruby-version: ['2.4.1']
ruby-version: ['3.0.0', '3.1.0']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
# change this to (see https://github.com/ruby/setup-ruby#versioning):
uses: ruby/setup-ruby@2b019609e2b0f1ea1a2bc8ca11cb82ab46ada124
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
Expand Down
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ source 'https://rubygems.org'
gemspec

group :development, :test do
gem 'rake', '~> 12.3.3'
gem 'test-unit', '~> 3.2.5'
gem 'rake', '~> 13.0.3'
gem 'test-unit', '~> 3.3.9'
end
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The wallee Ruby library wraps around the wallee API. This library facilitates yo

## Requirements

- Ruby 2.2+
- Ruby 3.0.0+

## Installation

Expand Down
2 changes: 1 addition & 1 deletion lib/wallee-ruby-sdk/api_client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def build_request(http_method, path, opts = {})
http_method = http_method.to_sym.downcase

default_headers = {
'x-meta-sdk-version': "4.1.0",
'x-meta-sdk-version': "4.2.0",
'x-meta-sdk-language': "ruby",
'x-meta-sdk-provider': "wallee",
'x-meta-sdk-language-version': RUBY_VERSION
Expand Down
2 changes: 1 addition & 1 deletion lib/wallee-ruby-sdk/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@
=end

module Wallee
VERSION = '4.1.0'
VERSION = '4.2.0'
end

0 comments on commit 6fe7007

Please sign in to comment.