Skip to content

Commit

Permalink
Release v0.14.2
Browse files Browse the repository at this point in the history
  • Loading branch information
philss committed May 20, 2023
1 parent 3dbbf83 commit 97c48bb
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.14.2] - 2023-05-20

### Added

- Add precompilation target for Linux running on ARM64 machines (both musl and gnu ABI).
This is useful for projects using Nerves.

Note that this is going to require `rustler_precompiled` v0.6 or above, since
the that version includes ARM64 on Linux as defaults.

## [0.14.1] - 2023-05-20

### Added
Expand Down Expand Up @@ -112,7 +122,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.14.1...HEAD
[Unreleased]: https://github.com/rusterlium/html5ever_elixir/compare/v0.14.2...HEAD
[0.14.2]: https://github.com/rusterlium/html5ever_elixir/compare/v0.14.1...v0.14.2
[0.14.1]: https://github.com/rusterlium/html5ever_elixir/compare/v0.14.0...v0.14.1
[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
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.1"
@version "0.14.2"
@repo_url "https://github.com/rusterlium/html5ever_elixir"

def project do
Expand Down
6 changes: 6 additions & 0 deletions native/html5ever_nif/.cargo/config
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,9 @@ linker = "arm-linux-gnueabihf-gcc"
rustflags = [
"-C", "target-feature=-crt-static"
]

# Same as above
[target.aarch64-unknown-linux-musl]
rustflags = [
"-C", "target-feature=-crt-static"
]

0 comments on commit 97c48bb

Please sign in to comment.