Skip to content

Commit 98842c2

Browse files
authored
Remove support for Ruby 2.6 (karafka#305)
1 parent e46d9c3 commit 98842c2

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ jobs:
2828
- '3.0.0'
2929
- '2.7'
3030
- '2.7.0'
31-
- '2.6.8'
3231
include:
3332
- ruby: '3.2'
3433
coverage: 'true'

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 0.14.0 (Unreleased)
2+
* [Change] Remove support for Ruby 2.6 due to it being EOL and WeakMap incompatibilities.
3+
14
# 0.13.0
25
* Support cooperative sticky partition assignment in the rebalance callback (methodmissing)
36
* Support both string and symbol header keys (ColinDKelley)

rdkafka.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Gem::Specification.new do |gem|
1616
gem.name = 'rdkafka'
1717
gem.require_paths = ['lib']
1818
gem.version = Rdkafka::VERSION
19-
gem.required_ruby_version = '>= 2.6'
19+
gem.required_ruby_version = '>= 2.7'
2020
gem.extensions = %w(ext/Rakefile)
2121

2222
gem.add_dependency 'ffi', '~> 1.15'

0 commit comments

Comments
 (0)