File tree Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Expand file tree Collapse file tree 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
66
77## [ Unreleased]
88
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+
916### Changed
1017
1118- 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) {} ` ).
1220
1321## [ 6.0.1] - 2023-02-26
1422
@@ -576,7 +584,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
576584
577585- 🎉 Initial release! 🎉
578586
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
580589[ 6.0.1 ] : https://github.com/ruby-syntax-tree/syntax_tree/compare/v6.0.0...v6.0.1
581590[ 6.0.0 ] : https://github.com/ruby-syntax-tree/syntax_tree/compare/v5.3.0...v6.0.0
582591[ 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 11PATH
22 remote: .
33 specs:
4- syntax_tree (6.0.1 )
4+ syntax_tree (6.0.2 )
55 prettier_print (>= 1.2.0 )
66
77GEM
Original file line number Diff line number Diff line change 11# frozen_string_literal: true
22
33module SyntaxTree
4- VERSION = "6.0.1 "
4+ VERSION = "6.0.2 "
55end
You can’t perform that action at this time.
0 commit comments