Skip to content

Commit 4864692

Browse files
committed
Bump to version 6.0.2
1 parent 1510e4f commit 4864692

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG.md

+10-1
Original file line numberDiff line numberDiff 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

Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
syntax_tree (6.0.1)
4+
syntax_tree (6.0.2)
55
prettier_print (>= 1.2.0)
66

77
GEM

lib/syntax_tree/version.rb

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

33
module SyntaxTree
4-
VERSION = "6.0.1"
4+
VERSION = "6.0.2"
55
end

0 commit comments

Comments
 (0)