Skip to content

Commit edc8267

Browse files
committed
Release v0.11.0
- Adds Ruby 3.3 to the test matrix - Adds .tool-versions for asdf support
1 parent b91d2b8 commit edc8267

File tree

5 files changed

+9
-2
lines changed

5 files changed

+9
-2
lines changed

.github/workflows/main.yml

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
- "3.0"
1717
- "3.1"
1818
- "3.2"
19+
- "3.3"
1920
name: CI
2021
runs-on: ubuntu-latest
2122
env:

.tool-versions

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ruby 3.2.3

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
66

77
## [Unreleased]
88

9+
## [0.11.0] - 2024-04-23
10+
11+
- ErbContent now has its value as child_nodes instead of empty array.
12+
- Allow html void tags and format self-closing tags
13+
914
## [0.10.5] - 2023-09-03
1015

1116
- Handle ERB-tags inside HTML-tags, like `<div <%= "class='foo'" %>>`

Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
w_syntax_tree-erb (0.10.5)
4+
w_syntax_tree-erb (0.11.0)
55
prettier_print (~> 1.2, >= 1.2.0)
66
syntax_tree (~> 6.1, >= 6.1.1)
77

lib/syntax_tree/erb/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module SyntaxTree
44
module ERB
5-
VERSION = "0.10.5"
5+
VERSION = "0.11.0"
66
end
77
end

0 commit comments

Comments
 (0)