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
6
6
7
7
## [ Unreleased]
8
8
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
+
9
18
## [ 0.9.5] - 2023-07-02
10
19
11
20
- Fixes ruby comment in ERB-tag included VoidStatement
@@ -61,5 +70,11 @@ Output:
61
70
- Can format a lot of .html.erb-syntax and works as a plugin to syntax_tree.
62
71
- This is still early and there are a lot of different weird syntaxes out there.
63
72
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
65
80
[ 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 1
1
PATH
2
2
remote: .
3
3
specs:
4
- w_syntax_tree-erb (0.9.5 )
4
+ w_syntax_tree-erb (0.10.0 )
5
5
prettier_print (~> 1.2 , >= 1.2.0 )
6
6
syntax_tree (~> 6.1 , >= 6.1.1 )
7
7
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ Currently handles
30
30
Add this line to your application's Gemfile:
31
31
32
32
``` ruby
33
- gem " w_syntax_tree-erb" , " ~> 0.9 " , require: false
33
+ gem " w_syntax_tree-erb" , " ~> 0.10 " , require: false
34
34
```
35
35
36
36
> 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 2
2
3
3
module SyntaxTree
4
4
module ERB
5
- VERSION = "0.9.5 "
5
+ VERSION = "0.10.0 "
6
6
end
7
7
end
You can’t perform that action at this time.
0 commit comments