Skip to content
This repository was archived by the owner on Nov 29, 2024. It is now read-only.

Commit 3526f35

Browse files
committed
gem: add support for Ruby 3.2 + drop support for EOL Ruby 2.7
1 parent 80b6f47 commit 3526f35

File tree

5 files changed

+11
-4
lines changed

5 files changed

+11
-4
lines changed

.github/workflows/ci.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,18 @@ jobs:
1616
strategy:
1717
matrix:
1818
ruby-version:
19-
- '2.7'
2019
- '3.0'
2120
- '3.1'
21+
- '3.2'
2222
steps:
2323
- uses: actions/checkout@v3
24+
2425
- name: Set up Ruby ${{ matrix.ruby-version }}
2526
uses: ruby/setup-ruby@v1
2627
with:
2728
ruby-version: ${{ matrix.ruby-version }}
2829
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
30+
2931
- name: Test
3032
run: |
3133
bundle exec rake ci

.rubocop.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ inherit_mode:
44
- Exclude
55

66
AllCops:
7-
TargetRubyVersion: '2.7'
7+
TargetRubyVersion: '3.0'
88
NewCops: enable
99
Exclude:
1010
- 'examples/*'

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 0.19.0
4+
5+
- support Ruby 3.2
6+
- drop EOL Ruby 2.7
7+
38
## 0.18.0 (June 5th, 2023)
49

510
- add support for [Zeebe 8.1.12](https://github.com/camunda/zeebe/releases/tag/8.1.12)

lib/zeebe/client/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
module Zeebe
33
module Client
4-
VERSION = '0.18.0'.freeze
4+
VERSION = '0.19.0'.freeze
55
end
66
end

zeebe-client.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Gem::Specification.new do |s|
1717
s.test_files = s.files.grep(%r{^(test|spec|features)/})
1818
s.require_paths = ['lib']
1919

20-
s.required_ruby_version = '>= 2.7'
20+
s.required_ruby_version = '>= 3.0'
2121

2222
s.add_runtime_dependency 'grpc', '~> 1.32'
2323

0 commit comments

Comments
 (0)