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
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
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
1212
1313``` elixir
1414def deps do
15- [{:html5ever , " ~> 0.13 .0" }]
15+ [{:html5ever , " ~> 0.14 .0" }]
1616end
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
2127By default ** you don't need Rust installed** because the lib will try to download
@@ -33,7 +39,7 @@ the compilation:
3339``` elixir
3440def deps do
3541 [
36- {:html5ever , " ~> 0.13 .0" },
42+ {:html5ever , " ~> 0.14 .0" },
3743 {:rustler , " >= 0.0.0" , optional: true }
3844 ]
3945end
Original file line number Diff line number Diff line change 11defmodule 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
You can’t perform that action at this time.
0 commit comments