Skip to content

Commit

Permalink
Release v0.10.0 (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidwessman authored Aug 20, 2023
1 parent 7679304 commit 375d720
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 4 deletions.
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a

## [Unreleased]

## [0.10.0] - 2023-08-20

- Changes how whitespace and newlines are handled.
- Supports syntax like:

```erb
<%= part %> / <%= total %> (<%= percentage %>%)
```

## [0.9.5] - 2023-07-02

- Fixes ruby comment in ERB-tag included VoidStatement
Expand Down Expand Up @@ -61,5 +70,11 @@ 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.9.0...HEAD
[unreleased]: https://github.com/davidwessman/syntax_tree-erb/compare/v0.10.0...HEAD
[0.10.0]: https://github.com/davidwessman/syntax_tree-erb/compare/v0.9.5...v0.10.0
[0.9.5]: https://github.com/davidwessman/syntax_tree-erb/compare/v0.9.4...v0.9.5
[0.9.4]: https://github.com/davidwessman/syntax_tree-erb/compare/v0.9.3...v0.9.4
[0.9.3]: https://github.com/davidwessman/syntax_tree-erb/compare/v0.9.2...v0.9.3
[0.9.2]: https://github.com/davidwessman/syntax_tree-erb/compare/v0.9.1...v0.9.2
[0.9.1]: https://github.com/davidwessman/syntax_tree-erb/compare/v0.9.0...v0.9.1
[0.9.0]: https://github.com/davidwessman/syntax_tree-erb/compare/419727a73af94057ca0980733e69ac8b4d52fdf4...v0.9.0
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.9.5)
w_syntax_tree-erb (0.10.0)
prettier_print (~> 1.2, >= 1.2.0)
syntax_tree (~> 6.1, >= 6.1.1)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Currently handles
Add this line to your application's Gemfile:

```ruby
gem "w_syntax_tree-erb", "~> 0.9", require: false
gem "w_syntax_tree-erb", "~> 0.10", require: false
```

> I added the `w_` prefix to avoid conflicts if there will ever be an official `syntax_tree-erb` gem.
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.9.5"
VERSION = "0.10.0"
end
end

0 comments on commit 375d720

Please sign in to comment.