Skip to content

Commit

Permalink
Release v0.11.0
Browse files Browse the repository at this point in the history
- Adds Ruby 3.3 to the test matrix
- Adds .tool-versions for asdf support
  • Loading branch information
davidwessman committed Apr 23, 2024
1 parent b91d2b8 commit edc8267
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
- "3.0"
- "3.1"
- "3.2"
- "3.3"
name: CI
runs-on: ubuntu-latest
env:
Expand Down
1 change: 1 addition & 0 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ruby 3.2.3
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a

## [Unreleased]

## [0.11.0] - 2024-04-23

- ErbContent now has its value as child_nodes instead of empty array.
- Allow html void tags and format self-closing tags

## [0.10.5] - 2023-09-03

- Handle ERB-tags inside HTML-tags, like `<div <%= "class='foo'" %>>`
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.10.5)
w_syntax_tree-erb (0.11.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.10.5"
VERSION = "0.11.0"
end
end

0 comments on commit edc8267

Please sign in to comment.