Skip to content

Commit 68d3466

Browse files
committedSep 20, 2023
Bump to version 6.2.0
1 parent cc55255 commit 68d3466

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed
 

‎CHANGELOG.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
66

77
## [Unreleased]
88

9+
## [6.2.0] - 2023-09-20
10+
11+
### Added
12+
13+
- Fix `WithScope` for destructured post arguments.
14+
15+
### Changed
16+
17+
- Always use `do`/`end` for multi-line lambdas.
18+
919
## [6.1.1] - 2023-03-21
1020

1121
### Changed
@@ -603,7 +613,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
603613

604614
- 🎉 Initial release! 🎉
605615

606-
[unreleased]: https://github.com/ruby-syntax-tree/syntax_tree/compare/v6.0.2...HEAD
616+
[unreleased]: https://github.com/ruby-syntax-tree/syntax_tree/compare/v6.2.0...HEAD
617+
[6.2.0]: https://github.com/ruby-syntax-tree/syntax_tree/compare/v6.1.1...v6.2.0
618+
[6.1.1]: https://github.com/ruby-syntax-tree/syntax_tree/compare/v6.1.0...v6.1.1
619+
[6.1.0]: https://github.com/ruby-syntax-tree/syntax_tree/compare/v6.0.2...v6.1.0
607620
[6.0.2]: https://github.com/ruby-syntax-tree/syntax_tree/compare/v6.0.1...v6.0.2
608621
[6.0.1]: https://github.com/ruby-syntax-tree/syntax_tree/compare/v6.0.0...v6.0.1
609622
[6.0.0]: https://github.com/ruby-syntax-tree/syntax_tree/compare/v5.3.0...v6.0.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.1.1)
4+
syntax_tree (6.2.0)
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.1.1"
4+
VERSION = "6.2.0"
55
end

0 commit comments

Comments
 (0)