Skip to content

Commit

Permalink
Release v0.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
philss committed Mar 25, 2024
1 parent 709c403 commit e2a03f7
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.16.0] - 2024-03-25

### Fixed

- Fix parsing of comments in `parse/1`.
- Avoid panic when parsing content with the "template" tag.

### Removed

- Drop support for Elixir 1.12

## [0.15.0] - 2023-06-16

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

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

[Unreleased]: https://github.com/rusterlium/html5ever_elixir/compare/v0.15.0...HEAD
[Unreleased]: https://github.com/rusterlium/html5ever_elixir/compare/v0.16.0...HEAD
[0.16.0]: https://github.com/rusterlium/html5ever_elixir/compare/v0.15.0...v0.16.0
[0.15.0]: https://github.com/rusterlium/html5ever_elixir/compare/v0.14.3...v0.15.0
[0.14.3]: https://github.com/rusterlium/html5ever_elixir/compare/v0.14.2...v0.14.3
[0.14.2]: https://github.com/rusterlium/html5ever_elixir/compare/v0.14.1...v0.14.2
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The package can be installed by adding `html5ever` to your list of dependencies

```elixir
def deps do
[{:html5ever, "~> 0.15.0"}]
[{:html5ever, "~> 0.16.0"}]
end
```

Expand All @@ -39,7 +39,7 @@ the compilation:
```elixir
def deps do
[
{:html5ever, "~> 0.15.0"},
{:html5ever, "~> 0.16.0"},
{:rustler, ">= 0.0.0", optional: true}
]
end
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Html5ever.Mixfile do
use Mix.Project

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

def project do
Expand Down

0 comments on commit e2a03f7

Please sign in to comment.