From 2e990cdc5acb46bb8db9234ebb37cedb13719379 Mon Sep 17 00:00:00 2001 From: Philip Sampaio Date: Tue, 4 Oct 2022 12:16:43 -0300 Subject: [PATCH] Release v0.14.0 --- CHANGELOG.md | 10 +++++++++- README.md | 10 ++++++++-- mix.exs | 2 +- 3 files changed, 18 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b770844..0cec8af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.14.0] - 2022-11-04 + +### Changed + +- Require `rustler_precompiled` equal or above `v0.5.2` - thanks [@Benjamin-Philip](https://github.com/Benjamin-Philip). +- Use `Application.compile_env/3` instead of `Application.get_env/3` in the native module. + ## [0.13.1] - 2022-06-24 ### Fixed @@ -91,7 +98,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.13.1...HEAD +[Unreleased]: https://github.com/rusterlium/html5ever_elixir/compare/v0.14.0...HEAD +[0.14.0]: https://github.com/rusterlium/html5ever_elixir/compare/v0.13.1...v0.14.0 [0.13.1]: https://github.com/rusterlium/html5ever_elixir/compare/v0.13.0...v0.13.1 [0.13.0]: https://github.com/rusterlium/html5ever_elixir/compare/v0.12.0...v0.13.0 [0.12.0]: https://github.com/rusterlium/html5ever_elixir/compare/v0.11.0...v0.12.0 diff --git a/README.md b/README.md index d608439..2456da6 100644 --- a/README.md +++ b/README.md @@ -12,10 +12,16 @@ The package can be installed by adding `html5ever` to your list of dependencies ```elixir def deps do - [{:html5ever, "~> 0.13.0"}] + [{:html5ever, "~> 0.14.0"}] end ``` +Or with [`Mix.install/1`](https://hexdocs.pm/mix/Mix.html#install/2): + +```elixir +Mix.install([:html5ever]) +``` + ## Forcing compilation By default **you don't need Rust installed** because the lib will try to download @@ -33,7 +39,7 @@ the compilation: ```elixir def deps do [ - {:html5ever, "~> 0.13.0"}, + {:html5ever, "~> 0.14.0"}, {:rustler, ">= 0.0.0", optional: true} ] end diff --git a/mix.exs b/mix.exs index f9383b7..6352d1d 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Html5ever.Mixfile do use Mix.Project - @version "0.14.0-dev" + @version "0.14.0" @repo_url "https://github.com/rusterlium/html5ever_elixir" def project do