Skip to content

Commit 1af8b35

Browse files
Release 3.1.3
1 parent 05a1efc commit 1af8b35

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/publish-ruby.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
# documentation.
55
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
66
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
7-
87
name: Ruby
98

109
on:
@@ -18,20 +17,22 @@ permissions:
1817

1918
jobs:
2019
test:
20+
strategy:
21+
matrix:
22+
ruby-version: ['2.4.1']
2123
runs-on: ubuntu-latest
2224
steps:
2325
- uses: actions/checkout@v3
24-
- name: Set up Ruby
26+
- name: Set up Ruby
2527
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
2628
# change this to (see https://github.com/ruby/setup-ruby#versioning):
27-
# uses: ruby/setup-ruby@v1
2829
uses: ruby/setup-ruby@2b019609e2b0f1ea1a2bc8ca11cb82ab46ada124
2930
with:
30-
ruby-version: 2.4.1
31+
ruby-version: ${{ matrix.ruby-version }}
3132
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
3233
- name: Run tests
3334
run: bundle exec rake
34-
35+
3536
- name: Publish to RubyGems
3637
run: |
3738
mkdir -p $HOME/.gem

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 = '3.1.2'
19+
VERSION = '3.1.3'
2020
end

0 commit comments

Comments
 (0)