Skip to content

Commit

Permalink
* Bump 2.7 branch to 2.7.2 (#748)
Browse files Browse the repository at this point in the history
Ruby 2.7.2 has been released.
https://www.ruby-lang.org/en/news/2020/10/02/ruby-2-7-2-released/

It seems like no changes have been made to ruby27.y where Parser gem
should be changed (backported).
ruby/ruby@v2_7_1...v2_7_2
  • Loading branch information
koic committed Oct 6, 2020
1 parent f4ffb5b commit 6337d7b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Expand Up @@ -17,8 +17,8 @@ jobs:
- name: 2.6.6 / Parser tests
rvm: 2.6.6
script: bundle exec rake test_cov
- name: 2.7.1 / Parser tests
rvm: 2.7.1
- name: 2.7.2 / Parser tests
rvm: 2.7.2
script: bundle exec rake test_cov
- name: ruby-head / Parser tests
rvm: ruby-head
Expand All @@ -29,8 +29,8 @@ jobs:
- name: 2.6.6 / Rubocop tests
rvm: 2.6.6
script: ./ci/run_rubocop_specs
- name: 2.7.1 / Rubocop tests
rvm: 2.7.1
- name: 2.7.2 / Rubocop tests
rvm: 2.7.2
script: ./ci/run_rubocop_specs
allow_failures:
- rvm: ruby-head
Expand Down
2 changes: 1 addition & 1 deletion lib/parser/current.rb
Expand Up @@ -75,7 +75,7 @@ def warn_syntax_deviation(feature, version)
CurrentRuby = Ruby26

when /^2\.7\./
current_version = '2.7.1'
current_version = '2.7.2'
if RUBY_VERSION != current_version
warn_syntax_deviation 'parser/ruby27', current_version
end
Expand Down

0 comments on commit 6337d7b

Please sign in to comment.