Skip to content

Commit e2a03f7

Browse files
committed
Release v0.16.0
1 parent 709c403 commit e2a03f7

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

Diff for: CHANGELOG.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

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+
920
## [0.15.0] - 2023-06-16
1021

1122
### Added
@@ -160,7 +171,8 @@ is not needed for most of people using this project.
160171

161172
- Add support for OTP 24. This was achieved by updating Rustler to v0.22.
162173

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
164176
[0.15.0]: https://github.com/rusterlium/html5ever_elixir/compare/v0.14.3...v0.15.0
165177
[0.14.3]: https://github.com/rusterlium/html5ever_elixir/compare/v0.14.2...v0.14.3
166178
[0.14.2]: https://github.com/rusterlium/html5ever_elixir/compare/v0.14.1...v0.14.2

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The package can be installed by adding `html5ever` to your list of dependencies
1212

1313
```elixir
1414
def deps do
15-
[{:html5ever, "~> 0.15.0"}]
15+
[{:html5ever, "~> 0.16.0"}]
1616
end
1717
```
1818

@@ -39,7 +39,7 @@ the compilation:
3939
```elixir
4040
def deps do
4141
[
42-
{:html5ever, "~> 0.15.0"},
42+
{:html5ever, "~> 0.16.0"},
4343
{:rustler, ">= 0.0.0", optional: true}
4444
]
4545
end

Diff for: mix.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Html5ever.Mixfile do
22
use Mix.Project
33

4-
@version "0.15.1-dev"
4+
@version "0.16.0"
55
@repo_url "https://github.com/rusterlium/html5ever_elixir"
66

77
def project do

0 commit comments

Comments
 (0)