diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3359727b..4b96e85b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: fail-fast: false matrix: ruby: - - '3.4.0-preview1' + - '3.4.0-preview2' - '3.3' - '3.2' - '3.1' diff --git a/CHANGELOG.md b/CHANGELOG.md index bb0945e4..b7a8a395 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Karafka Web Changelog +## 0.10.4 (Unreleased) +- **[Breaking]** Drop Ruby `3.0` support according to the EOL schedule. + ## 0.10.3 (2024-09-17) - **[Feature]** Introduce ability to brand Web UI with environment (Pro). - [Enhancement] Provide assignment status in the routing (Pro). diff --git a/Gemfile.lock b/Gemfile.lock index 0bde9bc6..464c7ae8 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - karafka-web (0.10.3) + karafka-web (0.10.4) erubi (~> 1.4) karafka (>= 2.4.10, < 2.5.0) karafka-core (>= 2.4.0, < 2.5.0) diff --git a/karafka-web.gemspec b/karafka-web.gemspec index 1d68f860..b5cae42c 100644 --- a/karafka-web.gemspec +++ b/karafka-web.gemspec @@ -24,7 +24,7 @@ Gem::Specification.new do |spec| spec.add_development_dependency 'rackup', '~> 0.2' - 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') diff --git a/lib/karafka/web/version.rb b/lib/karafka/web/version.rb index 80a0d19b..2043b2bc 100644 --- a/lib/karafka/web/version.rb +++ b/lib/karafka/web/version.rb @@ -3,6 +3,6 @@ module Karafka module Web # Current gem version - VERSION = '0.10.3' + VERSION = '0.10.4' end end