This repository was archived by the owner on Nov 29, 2024. It is now read-only.
File tree 5 files changed +11
-4
lines changed
5 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -16,16 +16,18 @@ jobs:
16
16
strategy :
17
17
matrix :
18
18
ruby-version :
19
- - ' 2.7'
20
19
- ' 3.0'
21
20
- ' 3.1'
21
+ - ' 3.2'
22
22
steps :
23
23
- uses : actions/checkout@v3
24
+
24
25
- name : Set up Ruby ${{ matrix.ruby-version }}
25
26
uses : ruby/setup-ruby@v1
26
27
with :
27
28
ruby-version : ${{ matrix.ruby-version }}
28
29
bundler-cache : true # runs 'bundle install' and caches installed gems automatically
30
+
29
31
- name : Test
30
32
run : |
31
33
bundle exec rake ci
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ inherit_mode:
4
4
- Exclude
5
5
6
6
AllCops :
7
- TargetRubyVersion : ' 2.7 '
7
+ TargetRubyVersion : ' 3.0 '
8
8
NewCops : enable
9
9
Exclude :
10
10
- ' examples/*'
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 0.19.0
4
+
5
+ - support Ruby 3.2
6
+ - drop EOL Ruby 2.7
7
+
3
8
## 0.18.0 (June 5th, 2023)
4
9
5
10
- add support for [ Zeebe 8.1.12] ( https://github.com/camunda/zeebe/releases/tag/8.1.12 )
Original file line number Diff line number Diff line change 1
1
2
2
module Zeebe
3
3
module Client
4
- VERSION = '0.18 .0' . freeze
4
+ VERSION = '0.19 .0' . freeze
5
5
end
6
6
end
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ Gem::Specification.new do |s|
17
17
s . test_files = s . files . grep ( %r{^(test|spec|features)/} )
18
18
s . require_paths = [ 'lib' ]
19
19
20
- s . required_ruby_version = '>= 2.7 '
20
+ s . required_ruby_version = '>= 3.0 '
21
21
22
22
s . add_runtime_dependency 'grpc' , '~> 1.32'
23
23
You can’t perform that action at this time.
0 commit comments