Skip to content

Commit 1678d3f

Browse files
authored
Remove Ruby 3.0 support (#224)
* remove 3.0 from ci * drop ruby 3.0 support
1 parent a668124 commit 1678d3f

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
ruby:
21-
- '3.4.0-preview1'
21+
- '3.4.0-preview2'
2222
- '3.3'
2323
- '3.2'
2424
- '3.1'

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Karafka Testing Changelog
22

3+
## 2.4.7 (Unreleased)
4+
- **[Breaking]** Drop Ruby `3.0` support according to the EOL schedule.
5+
36
## 2.4.6 (2024-07-31)
47
- [Fix] uninitialized constant `Karafka::Testing::Errors::ConsumerGroupNotFound`.
58

Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
karafka-testing (2.4.6)
4+
karafka-testing (2.4.7)
55
karafka (>= 2.4.0, < 2.5.0)
66
waterdrop (>= 2.7.0)
77

karafka-testing.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Gem::Specification.new do |spec|
2727
spec.add_dependency 'karafka', '>= 2.4.0', '< 2.5.0'
2828
spec.add_dependency 'waterdrop', '>= 2.7.0'
2929

30-
spec.required_ruby_version = '>= 3.0.0'
30+
spec.required_ruby_version = '>= 3.1.0'
3131

3232
spec.metadata = {
3333
'funding_uri' => 'https://karafka.io/#become-pro',

lib/karafka/testing/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
module Karafka
55
module Testing
66
# Current version of gem. It should match Karafka framework version
7-
VERSION = '2.4.6'
7+
VERSION = '2.4.7'
88
end
99
end

0 commit comments

Comments
 (0)