Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

* Bump 2.7 branch to 2.7.2 #748

Merged
merged 1 commit into from Oct 6, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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