File tree 3 files changed +16
-4
lines changed
3 files changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ 0.16.0] - 2024-03-25
10
+
11
+ ### Fixed
12
+
13
+ - Fix parsing of comments in ` parse/1 ` .
14
+ - Avoid panic when parsing content with the "template" tag.
15
+
16
+ ### Removed
17
+
18
+ - Drop support for Elixir 1.12
19
+
9
20
## [ 0.15.0] - 2023-06-16
10
21
11
22
### Added
@@ -160,7 +171,8 @@ is not needed for most of people using this project.
160
171
161
172
- Add support for OTP 24. This was achieved by updating Rustler to v0.22.
162
173
163
- [ Unreleased ] : https://github.com/rusterlium/html5ever_elixir/compare/v0.15.0...HEAD
174
+ [ Unreleased ] : https://github.com/rusterlium/html5ever_elixir/compare/v0.16.0...HEAD
175
+ [ 0.16.0 ] : https://github.com/rusterlium/html5ever_elixir/compare/v0.15.0...v0.16.0
164
176
[ 0.15.0 ] : https://github.com/rusterlium/html5ever_elixir/compare/v0.14.3...v0.15.0
165
177
[ 0.14.3 ] : https://github.com/rusterlium/html5ever_elixir/compare/v0.14.2...v0.14.3
166
178
[ 0.14.2 ] : https://github.com/rusterlium/html5ever_elixir/compare/v0.14.1...v0.14.2
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ The package can be installed by adding `html5ever` to your list of dependencies
12
12
13
13
``` elixir
14
14
def deps do
15
- [{:html5ever , " ~> 0.15 .0" }]
15
+ [{:html5ever , " ~> 0.16 .0" }]
16
16
end
17
17
```
18
18
@@ -39,7 +39,7 @@ the compilation:
39
39
``` elixir
40
40
def deps do
41
41
[
42
- {:html5ever , " ~> 0.15 .0" },
42
+ {:html5ever , " ~> 0.16 .0" },
43
43
{:rustler , " >= 0.0.0" , optional: true }
44
44
]
45
45
end
Original file line number Diff line number Diff line change 1
1
defmodule Html5ever.Mixfile do
2
2
use Mix.Project
3
3
4
- @ version "0.15.1-dev "
4
+ @ version "0.16.0 "
5
5
@ repo_url "https://github.com/rusterlium/html5ever_elixir"
6
6
7
7
def project do
You can’t perform that action at this time.
0 commit comments