Skip to content

Commit

Permalink
allow rdkafka 0.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mensfeld committed Nov 26, 2024
1 parent a142572 commit d7bfcce
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Karafka Core Changelog

## 2.4.6 (Unreleased)
- [Change] Allow `karafka-rdkafka` `0.18.0`.

## 2.4.5 (2024-11-19)
- **[Breaking]** Drop Ruby `3.0` support according to the EOL schedule.
- [Enhancement] Support listeners inspection via `#listeners`.
Expand Down
8 changes: 4 additions & 4 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
PATH
remote: .
specs:
karafka-core (2.4.5)
karafka-rdkafka (>= 0.17.6, < 0.18.0)
karafka-core (2.4.6)
karafka-rdkafka (>= 0.17.6, < 0.19.0)

GEM
remote: https://rubygems.org/
Expand Down Expand Up @@ -31,12 +31,12 @@ GEM
ffi (1.17.0)
i18n (1.14.5)
concurrent-ruby (~> 1.0)
karafka-rdkafka (0.17.6)
karafka-rdkafka (0.18.0)
ffi (~> 1.15)
mini_portile2 (~> 2.6)
rake (> 12)
logger (1.6.1)
mini_portile2 (2.8.7)
mini_portile2 (2.8.8)
minitest (5.25.1)
rake (13.2.1)
rspec (3.13.0)
Expand Down
2 changes: 1 addition & 1 deletion karafka-core.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ 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.17.6', '< 0.18.0'
spec.add_dependency 'karafka-rdkafka', '>= 0.17.6', '< 0.19.0'

spec.required_ruby_version = '>= 3.1.0'

Expand Down
2 changes: 1 addition & 1 deletion lib/karafka/core/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ module Karafka
module Core
# Current Karafka::Core version
# We follow the versioning schema of given Karafka version
VERSION = '2.4.5'
VERSION = '2.4.6'
end
end

0 comments on commit d7bfcce

Please sign in to comment.