Skip to content

Commit 7f4abde

Browse files
committed
* Bump maintenance branches to 3.2.2, 3.1.4, 3.0.6, and 2.7.8 (#920)
These Rubies have been released. - https://www.ruby-lang.org/en/news/2025/03/26/ruby-3-2-8-released/ - https://www.ruby-lang.org/en/news/2025/03/26/ruby-3-1-7-released/ ## Ruby 3.2 branch Bump 3.2 branch from 3.2.7 to 3.2.8 ruby/ruby@v3_2_7...v3_2_8 There seems to be no change to syntax. ## Ruby 3.1 branch Bump 3.1 branch from 3.1.6 to 3.1.7 ruby/ruby@v3_1_6...v3_1_7 There seems to be no change to syntax.
1 parent ecda86b commit 7f4abde

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
ruby: ["3.1.6", "3.2.7", "3.3.7", "3.4.1", "jruby-9.4"]
20+
ruby: ["3.1.7", "3.2.8", "3.3.7", "3.4.1", "jruby-9.4"]
2121
test_command: ["bundle exec rake test"]
2222
include:
2323
- ruby: "head"
2424
test_command: "bundle exec rake test || true"
2525
- ruby: "truffleruby"
2626
test_command: "bundle exec rake test || true"
27-
- ruby: "3.2.7"
27+
- ruby: "3.2.8"
2828
test_command: "./ci/run_rubocop_specs || true"
2929
- ruby: "3.3.7"
3030
test_command: "./ci/run_rubocop_specs || true"

lib/parser/current.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def warn_syntax_deviation(feature, version)
9393
CurrentRuby = Ruby30
9494

9595
when /^3\.1\./
96-
current_version = '3.1.6'
96+
current_version = '3.1.7'
9797
if RUBY_VERSION != current_version
9898
warn_syntax_deviation 'parser/ruby31', current_version
9999
end
@@ -102,7 +102,7 @@ def warn_syntax_deviation(feature, version)
102102
CurrentRuby = Ruby31
103103

104104
when /^3\.2\./
105-
current_version = '3.2.7'
105+
current_version = '3.2.8'
106106
if RUBY_VERSION != current_version
107107
warn_syntax_deviation 'parser/ruby32', current_version
108108
end

0 commit comments

Comments
 (0)