Skip to content

Commit a162a24

Browse files
authored
do not compile natives (#643)
1 parent 1ae8261 commit a162a24

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Rdkafka Changelog
22

3+
## 0.22.1 (2025-07-17)
4+
- [Fix] Fix `Rakefile` being available in the precompiled versions causing build failures.
5+
36
## 0.22.0 (2025-07-17)
47
- **[Feature]** Add precompiled `x86_64-linux-gnu` setup.
58
- **[Feature]** Add precompiled `x86_64-linux-musl` setup.

lib/rdkafka/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
module Rdkafka
4-
VERSION = "0.22.0"
4+
VERSION = "0.22.1"
55
LIBRDKAFKA_VERSION = "2.8.0"
66
LIBRDKAFKA_SOURCE_SHA256 = "5bd1c46f63265f31c6bfcedcde78703f77d28238eadf23821c2b43fc30be3e25"
77
end

rdkafka.gemspec

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,11 @@ Gem::Specification.new do |gem|
99
gem.summary = "The rdkafka gem is a modern Kafka client library for Ruby based on librdkafka. It wraps the production-ready C client using the ffi gem and targets Kafka 1.0+ and Ruby 2.7+."
1010
gem.license = 'MIT'
1111

12-
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
1312
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
1413
gem.name = 'rdkafka'
1514
gem.require_paths = ['lib']
1615
gem.version = Rdkafka::VERSION
1716
gem.required_ruby_version = '>= 3.1'
18-
gem.extensions = %w(ext/Rakefile)
1917

2018
if ENV['RUBY_PLATFORM']
2119
gem.platform = ENV['RUBY_PLATFORM']

0 commit comments

Comments
 (0)