Skip to content

Commit

Permalink
use ruby 3.4-preview2 and drop 3.0 support (#457)
Browse files Browse the repository at this point in the history
  • Loading branch information
mensfeld authored Oct 9, 2024
1 parent bfb410e commit c365d0a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
fail-fast: false
matrix:
ruby:
- '3.4.0-preview1'
- '3.4.0-preview2'
- '3.3'
- '3.2'
- '3.1'
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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).
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion karafka-web.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down
2 changes: 1 addition & 1 deletion lib/karafka/web/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
module Karafka
module Web
# Current gem version
VERSION = '0.10.3'
VERSION = '0.10.4'
end
end

0 comments on commit c365d0a

Please sign in to comment.