File tree 4 files changed +13
-5
lines changed
4 files changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ 4.0.2] - 2022-10-19
10
+
11
+ ### Changed
12
+
13
+ - [ #177 ] ( https://github.com/ruby-syntax-tree/syntax_tree/pull/177 ) - Fix up various other issues with the environment visitor addition.
14
+
9
15
## [ 4.0.1] - 2022-10-18
10
16
11
17
### Changed
@@ -391,7 +397,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
391
397
392
398
- 🎉 Initial release! 🎉
393
399
394
- [ unreleased ] : https://github.com/ruby-syntax-tree/syntax_tree/compare/v4.0.0...HEAD
400
+ [ unreleased ] : https://github.com/ruby-syntax-tree/syntax_tree/compare/v4.0.2...HEAD
401
+ [ 4.0.2 ] : https://github.com/ruby-syntax-tree/syntax_tree/compare/v4.0.1...v4.0.2
402
+ [ 4.0.1 ] : https://github.com/ruby-syntax-tree/syntax_tree/compare/v4.0.0...v4.0.1
395
403
[ 4.0.0 ] : https://github.com/ruby-syntax-tree/syntax_tree/compare/v3.6.3...v4.0.0
396
404
[ 3.6.3 ] : https://github.com/ruby-syntax-tree/syntax_tree/compare/v3.6.2...v3.6.3
397
405
[ 3.6.2 ] : https://github.com/ruby-syntax-tree/syntax_tree/compare/v3.6.1...v3.6.2
Original file line number Diff line number Diff line change 1
1
PATH
2
2
remote: .
3
3
specs:
4
- syntax_tree (4.0.1 )
5
- prettier_print (>= 1.0.1 )
4
+ syntax_tree (4.0.2 )
5
+ prettier_print (>= 1.0.2 )
6
6
7
7
GEM
8
8
remote: https://rubygems.org/
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
3
module SyntaxTree
4
- VERSION = "4.0.1 "
4
+ VERSION = "4.0.2 "
5
5
end
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
25
25
spec . executables = spec . files . grep ( %r{^exe/} ) { |f | File . basename ( f ) }
26
26
spec . require_paths = %w[ lib ]
27
27
28
- spec . add_dependency "prettier_print" , ">= 1.0.1 "
28
+ spec . add_dependency "prettier_print" , ">= 1.0.2 "
29
29
30
30
spec . add_development_dependency "bundler"
31
31
spec . add_development_dependency "minitest"
You can’t perform that action at this time.
0 commit comments