Skip to content

Commit

Permalink
Allow Ruby 2.5 again (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
dduugg authored Jul 1, 2021
1 parent 8e752db commit 00fa4cc
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['2.6', '2.7', '3.0']
ruby-version: ['2.5', '2.6', '2.7', '3.0']
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ AllCops:
- '**/*.rbi' # VSCode plugin workaround
- 'spec/data/**/*'
NewCops: enable
TargetRubyVersion: 2.6
TargetRubyVersion: 2.5

Layout/ClassStructure:
Enabled: true
Expand Down
4 changes: 0 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@
* [#64](https://github.com/dduugg/yard-sorbet/pull/64) Fix parsing of `list` nodes
* [#65](https://github.com/dduugg/yard-sorbet/pull/65) Fix parsing of nested `array` nodes

### Changes

* Bump required ruby version to `>= 2.6.0`

## 0.5.1 (2021-06-08)

### Bug fixes
Expand Down
2 changes: 1 addition & 1 deletion yard-sorbet.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
A YARD plugin that incorporates Sorbet type information
DESC
spec.homepage = 'https://github.com/dduugg/yard-sorbet'
spec.required_ruby_version = Gem::Requirement.new('>= 2.6.0')
spec.required_ruby_version = Gem::Requirement.new('>= 2.5.0')

spec.metadata = {
'bug_tracker_uri' => "#{spec.homepage}/issues",
Expand Down

0 comments on commit 00fa4cc

Please sign in to comment.