Skip to content

Commit

Permalink
Release v0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
philss committed Oct 4, 2022
1 parent b73fec0 commit 2e990cd
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
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.14.0-dev"
@version "0.14.0"
@repo_url "https://github.com/rusterlium/html5ever_elixir"

def project do
Expand Down

0 comments on commit 2e990cd

Please sign in to comment.