Skip to content

Commit a73c6c2

Browse files
committed
Release 0.15.0
1 parent e28b531 commit a73c6c2

File tree

4 files changed

+19
-6
lines changed

4 files changed

+19
-6
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
## Unreleased
44

5+
## v0.15.0 (2025-06-01)
6+
7+
### Compatibility
8+
9+
* No longer support Elixir versions under 1.16 ir Elixir/OTP versions under 26
10+
* Support Elixir 1.16, 1.17 and 1.18 as well as Erlang/OTP 26 and 27
11+
12+
### Fixes
13+
14+
* Upgrade old, invalid actions in workflows
15+
* Update compilation targets in release workflow
16+
* Fix rustler precompilation issue relating to NIF versions
17+
518
## v0.14.3 (2023-03-27)
619

720
### Fixes

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Meeseeks_Html5ever
22

33
[![MeeseeksHtml5ever version](https://img.shields.io/hexpm/v/meeseeks_html5ever.svg)](https://hex.pm/packages/meeseeks_html5ever)
4-
![tests](https://github.com/mischov/meeseeks_html5ever/workflows/tests/badge.svg)
4+
[![CI](https://github.com/mischov/meeseeks_html5ever/actions/workflows/ci.yml/badge.svg)](https://github.com/mischov/meeseeks_html5ever/actions/workflows/ci.yml)
55

66
Originally a fork of Hansihe's [html5ever_elixir](https://github.com/hansihe/html5ever_elixir) that is more tightly coupled with [Meeseeks](https://github.com/mischov/meeseeks), Meeseeks_Html5ever has grown to include additional functionality, such as use of xml5ever for XML parsing.
77

88
## Compatibility
99

10-
Meeseeks_Html5ever requires a minimum combination of Elixir 1.12.0 and Erlang/OTP 23.0, and is tested with a maximum combination of Elixir 1.14.0 and Erlang/OTP 25.0.
10+
Meeseeks_Html5ever is tested with a minimum combination of Elixir 1.16.0 and Erlang/OTP 26.0 and a maximum combination of Elixir 1.18.0 and Erlang/OTP 27.0.
1111

1212
## Installation
1313

@@ -16,7 +16,7 @@ Ensure Rust is installed, then add Meeseeks_Html5ever to your `mix.exs`:
1616
```elixir
1717
def deps do
1818
[
19-
{:meeseeks_html5ever, "~> 0.14.3"}
19+
{:meeseeks_html5ever, "~> 0.15.0"}
2020
]
2121
end
2222
```
@@ -40,7 +40,7 @@ If you want to force compilation you will need to have the Rust compiler [instal
4040
```elixir
4141
def deps do
4242
[
43-
{:meeseeks_html5ever, "~> 0.14.3"},
43+
{:meeseeks_html5ever, "~> 0.15.0"},
4444
{:rustler, ">= 0.0.0", optional: true}
4545
]
4646
end

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ defmodule MeeseeksHtml5ever.Mixfile do
33

44
@description "Meeseeks-specific NIF binding of html5ever using Rustler"
55
@source_url "https://github.com/mischov/meeseeks_html5ever"
6-
@version "0.14.3"
6+
@version "0.15.0"
77

88
def project do
99
[

native/meeseeks_html5ever_nif/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "meeseeks_html5ever_nif"
3-
version = "0.14.3"
3+
version = "0.15.0"
44
authors = ["Mischov <mmischov@gmail.com>"]
55
edition = "2018"
66

0 commit comments

Comments
 (0)