Skip to content

Commit

Permalink
Dropping support for Ruby 2.6 and bumping version to 2.1.0.
Browse files Browse the repository at this point in the history
Many of the upstream gems no longer support Ruby 2.6, and older gems may have
security holes that cannot be resolved without updating to the latest versions.
  • Loading branch information
evolve75 committed Aug 12, 2024
1 parent 84e2baf commit 5e9fe1d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coveralls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ["2.6", "2.7", "3.0", "3.1"]
ruby: ["2.7", "3.0", "3.1", "3.2", "3.3"]
runs-on: ubuntu-latest

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ["2.6", "2.7", "3.0", "3.1"]
ruby: ["2.7", "3.0", "3.1", "3.2", "3.3"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
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:
rubytree (2.0.4)
rubytree (2.1.0)
json (~> 2.0, > 2.3.1)

GEM
Expand Down
2 changes: 1 addition & 1 deletion lib/tree/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@

module Tree
# Rubytree Package Version
VERSION = '2.0.4'
VERSION = '2.1.0'
end
2 changes: 1 addition & 1 deletion rubytree.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Gem::Specification.new do |s|
s.email = '[email protected]'
s.homepage = 'http://rubytree.anupamsg.me'

s.required_ruby_version = '>=2.6'
s.required_ruby_version = '>=2.7'

s.summary = 'A generic tree data structure for Ruby.'

Expand Down

0 comments on commit 5e9fe1d

Please sign in to comment.