Skip to content

Commit

Permalink
Release 4.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wallee-deployment-user committed Jan 19, 2024
1 parent 14e8a87 commit b147517
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/publish-ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,14 @@ jobs:
needs: test
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Set up Ruby for release
# 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@v1
with:
ruby-version: '3.1.0'
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Publish to RubyGems
run: |
mkdir -p $HOME/.gem
Expand All @@ -48,3 +56,4 @@ jobs:
rm $HOME/.gem/credentials
env:
GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"

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.3.0",
'x-meta-sdk-version': "4.4.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.3.0'
VERSION = '4.4.0'
end

0 comments on commit b147517

Please sign in to comment.