File tree Expand file tree Collapse file tree 3 files changed +18
-4
lines changed Expand file tree Collapse file tree 3 files changed +18
-4
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## [ Unreleased]
8
8
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
+
9
16
## [ 0.13.1] - 2022-06-24
10
17
11
18
### Fixed
@@ -91,7 +98,8 @@ is not needed for most of people using this project.
91
98
92
99
- Add support for OTP 24. This was achieved by updating Rustler to v0.22.
93
100
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
95
103
[ 0.13.1 ] : https://github.com/rusterlium/html5ever_elixir/compare/v0.13.0...v0.13.1
96
104
[ 0.13.0 ] : https://github.com/rusterlium/html5ever_elixir/compare/v0.12.0...v0.13.0
97
105
[ 0.12.0 ] : https://github.com/rusterlium/html5ever_elixir/compare/v0.11.0...v0.12.0
Original file line number Diff line number Diff line change @@ -12,10 +12,16 @@ 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.13 .0" }]
15
+ [{:html5ever , " ~> 0.14 .0" }]
16
16
end
17
17
```
18
18
19
+ Or with [ ` Mix.install/1 ` ] ( https://hexdocs.pm/mix/Mix.html#install/2 ) :
20
+
21
+ ``` elixir
22
+ Mix .install ([:html5ever ])
23
+ ```
24
+
19
25
## Forcing compilation
20
26
21
27
By default ** you don't need Rust installed** because the lib will try to download
@@ -33,7 +39,7 @@ the compilation:
33
39
``` elixir
34
40
def deps do
35
41
[
36
- {:html5ever , " ~> 0.13 .0" },
42
+ {:html5ever , " ~> 0.14 .0" },
37
43
{:rustler , " >= 0.0.0" , optional: true }
38
44
]
39
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.14.0-dev "
4
+ @ version "0.14.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