File tree Expand file tree Collapse file tree 4 files changed +19
-4
lines changed Expand file tree Collapse file tree 4 files changed +19
-4
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,15 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
66
77## [ Unreleased]
88
9+ ## [ 0.10.0] - 2023-08-20
10+
11+ - Changes how whitespace and newlines are handled.
12+ - Supports syntax like:
13+
14+ ``` erb
15+ <%= part %> / <%= total %> (<%= percentage %>%)
16+ ```
17+
918## [ 0.9.5] - 2023-07-02
1019
1120- Fixes ruby comment in ERB-tag included VoidStatement
@@ -61,5 +70,11 @@ Output:
6170- Can format a lot of .html.erb-syntax and works as a plugin to syntax_tree.
6271- This is still early and there are a lot of different weird syntaxes out there.
6372
64- [ unreleased ] : https://github.com/davidwessman/syntax_tree-erb/compare/v0.9.0...HEAD
73+ [ unreleased ] : https://github.com/davidwessman/syntax_tree-erb/compare/v0.10.0...HEAD
74+ [ 0.10.0 ] : https://github.com/davidwessman/syntax_tree-erb/compare/v0.9.5...v0.10.0
75+ [ 0.9.5 ] : https://github.com/davidwessman/syntax_tree-erb/compare/v0.9.4...v0.9.5
76+ [ 0.9.4 ] : https://github.com/davidwessman/syntax_tree-erb/compare/v0.9.3...v0.9.4
77+ [ 0.9.3 ] : https://github.com/davidwessman/syntax_tree-erb/compare/v0.9.2...v0.9.3
78+ [ 0.9.2 ] : https://github.com/davidwessman/syntax_tree-erb/compare/v0.9.1...v0.9.2
79+ [ 0.9.1 ] : https://github.com/davidwessman/syntax_tree-erb/compare/v0.9.0...v0.9.1
6580[ 0.9.0 ] : https://github.com/davidwessman/syntax_tree-erb/compare/419727a73af94057ca0980733e69ac8b4d52fdf4...v0.9.0
Original file line number Diff line number Diff line change 11PATH
22 remote: .
33 specs:
4- w_syntax_tree-erb (0.9.5 )
4+ w_syntax_tree-erb (0.10.0 )
55 prettier_print (~> 1.2 , >= 1.2.0 )
66 syntax_tree (~> 6.1 , >= 6.1.1 )
77
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ Currently handles
3030Add this line to your application's Gemfile:
3131
3232``` ruby
33- gem " w_syntax_tree-erb" , " ~> 0.9 " , require: false
33+ gem " w_syntax_tree-erb" , " ~> 0.10 " , require: false
3434```
3535
3636> I added the ` w_ ` prefix to avoid conflicts if there will ever be an official ` syntax_tree-erb ` gem.
Original file line number Diff line number Diff line change 22
33module SyntaxTree
44 module ERB
5- VERSION = "0.9.5 "
5+ VERSION = "0.10.0 "
66 end
77end
You can’t perform that action at this time.
0 commit comments