Skip to content

Commit 2e990cd

Browse files
committed
Release v0.14.0
1 parent b73fec0 commit 2e990cd

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.14.0] - 2022-11-04
10+
11+
### Changed
12+
13+
- Require `rustler_precompiled` equal or above `v0.5.2` - thanks [@Benjamin-Philip](https://github.com/Benjamin-Philip).
14+
- Use `Application.compile_env/3` instead of `Application.get_env/3` in the native module.
15+
916
## [0.13.1] - 2022-06-24
1017

1118
### Fixed
@@ -91,7 +98,8 @@ is not needed for most of people using this project.
9198

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

94-
[Unreleased]: https://github.com/rusterlium/html5ever_elixir/compare/v0.13.1...HEAD
101+
[Unreleased]: https://github.com/rusterlium/html5ever_elixir/compare/v0.14.0...HEAD
102+
[0.14.0]: https://github.com/rusterlium/html5ever_elixir/compare/v0.13.1...v0.14.0
95103
[0.13.1]: https://github.com/rusterlium/html5ever_elixir/compare/v0.13.0...v0.13.1
96104
[0.13.0]: https://github.com/rusterlium/html5ever_elixir/compare/v0.12.0...v0.13.0
97105
[0.12.0]: https://github.com/rusterlium/html5ever_elixir/compare/v0.11.0...v0.12.0

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,16 @@ The package can be installed by adding `html5ever` to your list of dependencies
1212

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

19+
Or with [`Mix.install/1`](https://hexdocs.pm/mix/Mix.html#install/2):
20+
21+
```elixir
22+
Mix.install([:html5ever])
23+
```
24+
1925
## Forcing compilation
2026

2127
By default **you don't need Rust installed** because the lib will try to download
@@ -33,7 +39,7 @@ the compilation:
3339
```elixir
3440
def deps do
3541
[
36-
{:html5ever, "~> 0.13.0"},
42+
{:html5ever, "~> 0.14.0"},
3743
{:rustler, ">= 0.0.0", optional: true}
3844
]
3945
end

mix.exs

Lines changed: 1 addition & 1 deletion
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.14.0-dev"
4+
@version "0.14.0"
55
@repo_url "https://github.com/rusterlium/html5ever_elixir"
66

77
def project do

0 commit comments

Comments
 (0)