Skip to content

Commit

Permalink
Drop support for Ruby 2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
peterfication committed Jan 10, 2024
1 parent 1ade423 commit 9a0f871
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 8 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ jobs:
- ruby: 3.2
- ruby: 3.1
- ruby: 3.0
- ruby: 2.7
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require:

AllCops:
NewCops: enable
TargetRubyVersion: 2.7
TargetRubyVersion: 3.0

Style/FrozenStringLiteralComment:
Enabled: false
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Changelog

## [Unreleased]

- Drop support for Ruby 2.7

## [0.2.0] - 2023-01-04

First real release

## [0.1.0] - 2022-12-31

Initial release
6 changes: 1 addition & 5 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,6 @@ GEM
kramdown (~> 2.0)
language_server-protocol (3.17.0.3)
method_source (1.0.0)
mini_portile2 (2.8.5)
nokogiri (1.16.0)
mini_portile2 (~> 2.8.2)
racc (~> 1.4)
nokogiri (1.16.0-arm64-darwin)
racc (~> 1.4)
parallel (1.24.0)
Expand Down Expand Up @@ -136,7 +132,7 @@ GEM

PLATFORMS
arm64-darwin-21
ruby
arm64-darwin-23

DEPENDENCIES
byebug
Expand Down
2 changes: 1 addition & 1 deletion rspec-graphql-integration.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
spec.files = `git ls-files -- lib/*`.split("\n")
spec.require_paths = ["lib"]

spec.required_ruby_version = ">= 2.7"
spec.required_ruby_version = ">= 3.0"

spec.add_dependency "graphql", ">= 1.0.0"
spec.add_dependency "rspec-core", ">= 3.0.0"
Expand Down

0 comments on commit 9a0f871

Please sign in to comment.