Skip to content

Commit

Permalink
Bump min Ruby to 2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
andymeneely committed Oct 26, 2021
1 parent 4b7ea50 commit f6b02cf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
@@ -1,16 +1,16 @@
name: Squib Unit Tests

on: [push]
on: [push, pull_request]

jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu, macos]
ruby: [2.5, 2.6, 2.7, 3.0, head]
ruby: [2.7, 3.0, head]
runs-on: ${{ matrix.os }}-latest
continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' || (matrix.ruby == '3.0' && matrix.os == 'macos')}}
continue-on-error: ${{ endsWith(matrix.ruby, 'head') || (matrix.ruby == '3.0' && matrix.os == 'macos')}}
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -10,6 +10,7 @@ Features:

Compatibility:
* Because of the features above, the new default behavior is to warn instead of errors on a missing file
* Ruby 2.7 is officially our minimum Ruby, since Ruby 2.6 will EOL in about six months from now

## v0.17.1 / 2021-09-07

Expand Down
2 changes: 1 addition & 1 deletion squib.gemspec
Expand Up @@ -7,7 +7,7 @@ Gem::Specification.new do |spec|
spec.specification_version = 2 if spec.respond_to? :specification_version=
spec.required_rubygems_version = Gem::Requirement.new('>= 0') if spec.respond_to? :required_rubygems_version=
spec.rubygems_version = '2.2.2'
spec.required_ruby_version = '>= 2.5.0'
spec.required_ruby_version = '>= 2.7.0'

spec.name = 'squib'
spec.version = Squib::VERSION
Expand Down

0 comments on commit f6b02cf

Please sign in to comment.