Skip to content

Commit 375d720

Browse files
authored
Release v0.10.0 (#55)
1 parent 7679304 commit 375d720

File tree

4 files changed

+19
-4
lines changed

4 files changed

+19
-4
lines changed

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff 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

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Currently handles
3030
Add 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.

lib/syntax_tree/erb/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module SyntaxTree
44
module ERB
5-
VERSION = "0.9.5"
5+
VERSION = "0.10.0"
66
end
77
end

0 commit comments

Comments
 (0)