File tree 3 files changed +12
-3
lines changed
3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -6,9 +6,17 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ 6.0.2] - 2023-03-03
10
+
11
+ ### Added
12
+
13
+ - The ` WithScope ` visitor mixin will now additionally report local variables defined through regular expression named captures.
14
+ - The ` WithScope ` visitor mixin now properly handles destructured splat arguments in required positions.
15
+
9
16
### Changed
10
17
11
18
- Fixed the AST output by adding blocks to ` Command ` and ` CommandCall ` nodes in the ` FieldVisitor ` .
19
+ - Fixed the location of lambda local variables (e.g., ` ->(; a) {} ` ).
12
20
13
21
## [ 6.0.1] - 2023-02-26
14
22
@@ -576,7 +584,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
576
584
577
585
- 🎉 Initial release! 🎉
578
586
579
- [ unreleased ] : https://github.com/ruby-syntax-tree/syntax_tree/compare/v6.0.1...HEAD
587
+ [ unreleased ] : https://github.com/ruby-syntax-tree/syntax_tree/compare/v6.0.2...HEAD
588
+ [ 6.0.2 ] : https://github.com/ruby-syntax-tree/syntax_tree/compare/v6.0.1...v6.0.2
580
589
[ 6.0.1 ] : https://github.com/ruby-syntax-tree/syntax_tree/compare/v6.0.0...v6.0.1
581
590
[ 6.0.0 ] : https://github.com/ruby-syntax-tree/syntax_tree/compare/v5.3.0...v6.0.0
582
591
[ 5.3.0 ] : https://github.com/ruby-syntax-tree/syntax_tree/compare/v5.2.0...v5.3.0
Original file line number Diff line number Diff line change 1
1
PATH
2
2
remote: .
3
3
specs:
4
- syntax_tree (6.0.1 )
4
+ syntax_tree (6.0.2 )
5
5
prettier_print (>= 1.2.0 )
6
6
7
7
GEM
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
3
module SyntaxTree
4
- VERSION = "6.0.1 "
4
+ VERSION = "6.0.2 "
5
5
end
You can’t perform that action at this time.
0 commit comments