Skip to content

Commit d171b75

Browse files
committed
test ruby 3.4 on github actions
1 parent 79b4be9 commit d171b75

File tree

4 files changed

+39
-27
lines changed

4 files changed

+39
-27
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
ruby-version: ['2.7', '3.0', '3.1', '3.2', '3.3']
14+
ruby-version: ['2.7', '3.0', '3.1', '3.2', '3.3', '3.4']
1515

1616
steps:
1717
- uses: actions/checkout@v3

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# CHANGELOG
22

3+
## 1.10.4 (2024-06-15)
4+
5+
* Update `synvert-core` to 2.0.2
6+
* No need to require bundler
7+
* Add `configure(parser: Synvert::PRISM_PARSER)` to generated snippet
8+
39
## 1.10.3 (2024-04-15)
410

511
* Update `synvert-core` to 1.35.1

Gemfile.lock

+31-25
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,31 @@
11
PATH
22
remote: .
33
specs:
4-
synvert (1.10.3)
4+
synvert (1.10.4)
55
synvert-core (>= 2.0.2)
66

77
GEM
88
remote: https://rubygems.org/
99
specs:
10-
activesupport (7.1.3.4)
10+
activesupport (8.0.1)
1111
base64
12+
benchmark (>= 0.3)
1213
bigdecimal
13-
concurrent-ruby (~> 1.0, >= 1.0.2)
14+
concurrent-ruby (~> 1.0, >= 1.3.1)
1415
connection_pool (>= 2.2.5)
1516
drb
1617
i18n (>= 1.6, < 2)
18+
logger (>= 1.4.2)
1719
minitest (>= 5.1)
18-
mutex_m
19-
tzinfo (~> 2.0)
20+
securerandom (>= 0.3)
21+
tzinfo (~> 2.0, >= 2.0.5)
22+
uri (>= 0.13.1)
2023
ast (2.4.2)
2124
base64 (0.2.0)
22-
bigdecimal (3.1.8)
25+
benchmark (0.4.0)
26+
bigdecimal (3.1.9)
2327
coderay (1.1.3)
24-
concurrent-ruby (1.3.3)
28+
concurrent-ruby (1.3.4)
2529
connection_pool (2.4.1)
2630
diff-lcs (1.5.1)
2731
drb (2.2.1)
@@ -41,36 +45,36 @@ GEM
4145
guard (~> 2.1)
4246
guard-compat (~> 1.1)
4347
rspec (>= 2.99.0, < 4.0)
44-
i18n (1.14.5)
48+
i18n (1.14.6)
4549
concurrent-ruby (~> 1.0)
4650
listen (3.8.0)
4751
rb-fsevent (~> 0.10, >= 0.10.3)
4852
rb-inotify (~> 0.9, >= 0.9.10)
53+
logger (1.6.4)
4954
lumberjack (1.2.9)
5055
method_source (1.0.0)
51-
minitest (5.23.1)
52-
mutex_m (0.2.0)
56+
minitest (5.25.4)
5357
nenv (0.3.0)
5458
node_mutation (1.24.4)
55-
node_query (1.15.3)
56-
node_visitor (1.0.1)
59+
node_query (1.16.0)
60+
node_visitor (1.1.0)
5761
notiffany (0.1.3)
5862
nenv (~> 0.1)
5963
shellany (~> 0.0)
60-
parallel (1.25.1)
61-
parser (3.3.3.0)
64+
parallel (1.26.3)
65+
parser (3.3.6.0)
6266
ast (~> 2.4.1)
6367
racc
64-
parser_node_ext (1.3.2)
68+
parser_node_ext (1.4.2)
6569
parser
6670
prettier_print (1.2.1)
67-
prism (0.30.0)
68-
prism_ext (0.3.2)
71+
prism (1.3.0)
72+
prism_ext (0.4.2)
6973
prism
7074
pry (0.14.2)
7175
coderay (~> 1.1)
7276
method_source (~> 1.0)
73-
racc (1.8.0)
77+
racc (1.8.1)
7478
rake (13.0.6)
7579
rb-fsevent (0.11.2)
7680
rb-inotify (0.10.1)
@@ -88,26 +92,28 @@ GEM
8892
diff-lcs (>= 1.2.0, < 2.0)
8993
rspec-support (~> 3.13.0)
9094
rspec-support (3.13.1)
95+
securerandom (0.4.1)
9196
shellany (0.0.1)
9297
syntax_tree (6.2.0)
9398
prettier_print (>= 1.2.0)
94-
syntax_tree_ext (0.8.2)
99+
syntax_tree_ext (0.9.2)
95100
syntax_tree
96-
synvert-core (2.0.2)
101+
synvert-core (2.2.2)
97102
activesupport
98103
node_mutation (>= 1.24.4)
99-
node_query (>= 1.15.3)
100-
node_visitor (>= 1.0.1)
104+
node_query (>= 1.15.4)
105+
node_visitor (>= 1.1.0)
101106
parallel
102107
parser
103-
parser_node_ext (>= 1.3.2)
108+
parser_node_ext (>= 1.4.2)
104109
prism
105-
prism_ext (>= 0.3.2)
110+
prism_ext (>= 0.4.2)
106111
syntax_tree
107-
syntax_tree_ext (>= 0.8.2)
112+
syntax_tree_ext (>= 0.9.2)
108113
thor (1.3.0)
109114
tzinfo (2.0.6)
110115
concurrent-ruby (~> 1.0)
116+
uri (1.0.2)
111117

112118
PLATFORMS
113119
ruby

lib/synvert/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Synvert
4-
VERSION = '1.10.3'
4+
VERSION = '1.10.4'
55
end

0 commit comments

Comments
 (0)