Skip to content

Commit 5eac4fe

Browse files
committed
Release v0.11.0
1 parent dbecca5 commit 5eac4fe

File tree

4 files changed

+21
-7
lines changed

4 files changed

+21
-7
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## v0.11.0 (2019-02-27)
4+
5+
### Compatibility
6+
7+
* No longer support Elixir 1.3 (minimum tested compatibility is now Elixir 1.4 and Erlang/OTP 19.3)
8+
* Support Elixir 1.8
9+
10+
### Enhancements
11+
12+
* Faster, more memory efficient encoding on Erlang/OTP 21
13+
* Update to latest versions of `html5ever`, `xml5ever`, and `rustler`
14+
15+
###
16+
317
## v0.10.1 (2018-09-27)
418

519
### Enhancements

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
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

8-
## Dependencies
8+
## Compatibility
99

10-
Meeseeks_Html5ever depends on the Rust library [html5ever](https://github.com/servo/html5ever), and you will need to have the Rust compiler [installed](https://www.rust-lang.org/en-US/install.html).
10+
Meeseeks_Html5ever is tested with a minimum combination of Elixir 1.4.0 and Erlang/OTP 19.3, and a maximum combination of Elixir 1.8.1 and Erlang/OTP 21.0.
1111

12-
## Compatibility
12+
## Dependencies
1313

14-
Meeseeks_Html5ever is tested with a minimum combination of Elixir 1.4.0 and Erlang/OTP 19.3, and a maximum combination of Elixir 1.8.1 and Erlang/OTP 21.0
14+
Meeseeks_Html5ever depends on the Rust library [html5ever](https://github.com/servo/html5ever), and you will need to have the Rust compiler [installed](https://www.rust-lang.org/en-US/install.html).
1515

1616
## Installation
1717

@@ -20,7 +20,7 @@ Ensure Rust is installed, then add Meeseeks_Html5ever to your `mix.exs`:
2020
```elixir
2121
def deps do
2222
[
23-
{:meeseeks_html5ever, "~> 0.10.1"}
23+
{:meeseeks_html5ever, "~> 0.11.0"}
2424
]
2525
end
2626
```

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule MeeseeksHtml5ever.Mixfile do
22
use Mix.Project
33

4-
@version "0.10.1"
4+
@version "0.11.0"
55

66
def project do
77
[

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.10.1"
3+
version = "0.11.0"
44
authors = ["Meeseeks <[email protected]>"]
55

66
[lib]

0 commit comments

Comments
 (0)