Skip to content

Commit 2f8d280

Browse files
committed
Bump to version 4.0.2
1 parent ce93566 commit 2f8d280

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

CHANGELOG.md

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

77
## [Unreleased]
88

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+
915
## [4.0.1] - 2022-10-18
1016

1117
### Changed
@@ -391,7 +397,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
391397

392398
- 🎉 Initial release! 🎉
393399

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
395403
[4.0.0]: https://github.com/ruby-syntax-tree/syntax_tree/compare/v3.6.3...v4.0.0
396404
[3.6.3]: https://github.com/ruby-syntax-tree/syntax_tree/compare/v3.6.2...v3.6.3
397405
[3.6.2]: https://github.com/ruby-syntax-tree/syntax_tree/compare/v3.6.1...v3.6.2

Gemfile.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
PATH
22
remote: .
33
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)
66

77
GEM
88
remote: https://rubygems.org/

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 = "4.0.1"
4+
VERSION = "4.0.2"
55
end

syntax_tree.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
2525
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
2626
spec.require_paths = %w[lib]
2727

28-
spec.add_dependency "prettier_print", ">= 1.0.1"
28+
spec.add_dependency "prettier_print", ">= 1.0.2"
2929

3030
spec.add_development_dependency "bundler"
3131
spec.add_development_dependency "minitest"

0 commit comments

Comments
 (0)