Skip to content

Commit

Permalink
Bump to v0.12.0 (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidwessman authored May 7, 2024
1 parent 858d83c commit 715e37f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a

## [Unreleased]

## [0.12.0] - 2024-05-07

- Support Ruby 3.3 by handling yield in ERB specifically
- Use SyntaxTree own class for ParseError to get better error feedback
- Adds handling for keeping track of column index, to support better error messages
Expand Down Expand Up @@ -118,7 +120,9 @@ Output:
- Can format a lot of .html.erb-syntax and works as a plugin to syntax_tree.
- This is still early and there are a lot of different weird syntaxes out there.

[unreleased]: https://github.com/davidwessman/syntax_tree-erb/compare/v0.10.5...HEAD
[unreleased]: https://github.com/davidwessman/syntax_tree-erb/compare/v0.12.0...HEAD
[0.12.0]: https://github.com/davidwessman/syntax_tree-erb/compare/v0.11.0...v0.12.0
[0.11.0]: https://github.com/davidwessman/syntax_tree-erb/compare/v0.10.5...v0.11.0
[0.10.5]: https://github.com/davidwessman/syntax_tree-erb/compare/v0.10.4...v0.10.5
[0.10.4]: https://github.com/davidwessman/syntax_tree-erb/compare/v0.10.3...v0.10.4
[0.10.3]: https://github.com/davidwessman/syntax_tree-erb/compare/v0.10.2...v0.10.3
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
w_syntax_tree-erb (0.11.0)
w_syntax_tree-erb (0.12.0)
prettier_print (~> 1.2, >= 1.2.0)
syntax_tree (~> 6.1, >= 6.1.1)

Expand Down
2 changes: 1 addition & 1 deletion lib/syntax_tree/erb/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module SyntaxTree
module ERB
VERSION = "0.11.0"
VERSION = "0.12.0"
end
end

0 comments on commit 715e37f

Please sign in to comment.