Skip to content

Commit

Permalink
drop ruby 3.0 and add ruby 3.3 support
Browse files Browse the repository at this point in the history
  • Loading branch information
knapo committed Feb 29, 2024
1 parent 6d337f6 commit 102cfe1
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [3.1, 3.2]
ruby-version: [3.1, 3.2, 3.3]

steps:
- uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Gemspec/RequiredRubyVersion:
Include:
- 3.1
- 3.2
- 3.3

Naming/FileName:
Exclude:
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby-3.2.3
ruby-3.3.0
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# CHANGELOG

## 3.3.1 - 2024-02-29
- make ruby 3.1 a minimum version

## 3.3.0 - 2023-11-23

- add `request_epilogue` so actions like `ActiveRecord::Base.connection_handler.clear_active_connections!` can be passed manually
Expand Down
20 changes: 12 additions & 8 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
rack-graphql (3.3.0)
rack-graphql (3.4.0)
graphql (~> 2.0)
oj
rack (>= 2.2.6)
Expand All @@ -11,10 +11,12 @@ GEM
specs:
ast (2.4.2)
awesome_print (1.9.2)
base64 (0.2.0)
bigdecimal (3.1.6)
coderay (1.1.3)
diff-lcs (1.5.1)
graphql (2.2.7)
graphql (2.2.11)
base64
json (2.7.1)
language_server-protocol (3.17.0.3)
method_source (1.0.0)
Expand All @@ -24,11 +26,12 @@ GEM
parser (3.3.0.5)
ast (~> 2.4.1)
racc
prism (0.24.0)
pry (0.14.2)
coderay (~> 1.1)
method_source (~> 1.0)
racc (1.7.3)
rack (3.0.9)
rack (3.0.9.1)
rack-test (2.1.0)
rack (>= 1.3)
rainbow (3.1.1)
Expand All @@ -47,8 +50,8 @@ GEM
rspec-mocks (3.13.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.13.0)
rspec-support (3.13.0)
rubocop (1.60.2)
rspec-support (3.13.1)
rubocop (1.61.0)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
Expand All @@ -59,8 +62,9 @@ GEM
rubocop-ast (>= 1.30.0, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.30.0)
parser (>= 3.2.1.0)
rubocop-ast (1.31.0)
parser (>= 3.3.0.4)
prism (>= 0.24.0)
rubocop-capybara (2.20.0)
rubocop (~> 1.41)
rubocop-factory_bot (2.25.1)
Expand Down Expand Up @@ -96,4 +100,4 @@ DEPENDENCIES
rubocop-rspec

BUNDLED WITH
2.5.5
2.5.6
2 changes: 1 addition & 1 deletion lib/rack_graphql/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module RackGraphql
VERSION = '3.3.0'.freeze
VERSION = '3.4.0'.freeze
end
2 changes: 1 addition & 1 deletion rack-graphql.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']

spec.required_ruby_version = '>= 3.1'
spec.required_ruby_version = Gem::Requirement.new('>= 3.1.0')

spec.add_dependency 'graphql', '~> 2.0'
spec.add_dependency 'oj'
Expand Down

0 comments on commit 102cfe1

Please sign in to comment.