Skip to content

Commit

Permalink
drop ruby 3.0 (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
mensfeld authored Oct 9, 2024
1 parent cbae070 commit 16e4762
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: false
matrix:
ruby:
- '3.4.0-preview1'
- '3.4.0-preview2'
- '3.3'
- '3.2'
- '3.1'
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Karafka Core Changelog

## 2.4.5 (Unreleased)
- **[Breaking]** Drop Ruby `3.0` support according to the EOL schedule.
- [Change] Set minimum `karafka-rdkafka` on `0.17.6` to support new features.

## 2.4.4 (2024-07-20)
- [Change] Set minimum `karafka-rdkafka` on `0.16.0` to support new features and allow for `0.17.0`.

Expand Down
5 changes: 2 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ PATH
remote: .
specs:
karafka-core (2.4.4)
karafka-rdkafka (>= 0.15.0, < 0.18.0)
karafka-rdkafka (>= 0.17.6, < 0.18.0)

GEM
remote: https://rubygems.org/
Expand All @@ -29,10 +29,9 @@ GEM
factory_bot (6.5.0)
activesupport (>= 5.0.0)
ffi (1.17.0)
ffi (1.17.0-x86_64-linux-gnu)
i18n (1.14.5)
concurrent-ruby (~> 1.0)
karafka-rdkafka (0.16.0)
karafka-rdkafka (0.17.6)
ffi (~> 1.15)
mini_portile2 (~> 2.6)
rake (> 12)
Expand Down
4 changes: 2 additions & 2 deletions karafka-core.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ Gem::Specification.new do |spec|
spec.description = 'A toolset of small support modules used throughout the Karafka ecosystem'
spec.licenses = %w[MIT]

spec.add_dependency 'karafka-rdkafka', '>= 0.15.0', '< 0.18.0'
spec.add_dependency 'karafka-rdkafka', '>= 0.17.6', '< 0.18.0'

spec.required_ruby_version = '>= 3.0.0'
spec.required_ruby_version = '>= 3.1.0'

if $PROGRAM_NAME.end_with?('gem')
spec.signing_key = File.expand_path('~/.ssh/gem-private_key.pem')
Expand Down

0 comments on commit 16e4762

Please sign in to comment.