Skip to content

Commit 46e6af8

Browse files
authored
Merge pull request #27 from mischov/chore/otp-22
Support OTP 22
2 parents a19a6ba + 58c0871 commit 46e6af8

File tree

5 files changed

+13
-14
lines changed

5 files changed

+13
-14
lines changed

.travis.yml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,18 @@ language: elixir
22

33
matrix:
44
include:
5-
- otp_release: 19.3
6-
elixir: 1.4.0
75
- otp_release: 20.0
8-
elixir: 1.4.5
6+
elixir: 1.6.0
97
- otp_release: 20.0
10-
elixir: 1.5.1
11-
- otp_release: 20.2
12-
elixir: 1.6.3
8+
elixir: 1.9.0
139
- otp_release: 21.0
1410
elixir: 1.6.6
1511
- otp_release: 21.0
16-
elixir: 1.7.3
17-
- otp_release: 21.0
18-
elixir: 1.8.1
12+
elixir: 1.9.0
13+
- otp_release: 22.0
14+
elixir: 1.7.0
15+
- otp_release: 22.0
16+
elixir: 1.9.0
1917

2018
sudo: false
2119

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Originally a fork of Hansihe's [html5ever_elixir](https://github.com/hansihe/htm
77

88
## Compatibility
99

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.
10+
Meeseeks_Html5ever is tested with a minimum combination of Elixir 1.6.0 and Erlang/OTP 20.0, and a maximum combination of Elixir 1.9.0 and Erlang/OTP 22.0.
1111

1212
## Dependencies
1313

mix.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ defmodule MeeseeksHtml5ever.Mixfile do
99
name: "MeeseeksHtml5ever",
1010
version: @version,
1111
description: description(),
12-
elixir: "~> 1.4",
12+
elixir: "~> 1.6",
1313
deps: deps(),
1414
package: package(),
1515
source_url: "https://github.com/mischov/meeseeks_html5ever",
@@ -40,7 +40,7 @@ defmodule MeeseeksHtml5ever.Mixfile do
4040

4141
defp deps do
4242
[
43-
{:rustler, "~> 0.20.0"},
43+
{:rustler, "~> 0.21.0"},
4444

4545
# docs
4646
{:ex_doc, ex_doc_version(), only: :docs, runtime: false}

mix.lock

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@
66
"makeup_elixir": {:hex, :makeup_elixir, "0.13.0", "be7a477997dcac2e48a9d695ec730b2d22418292675c75aa2d34ba0909dcdeda", [:mix], [{:makeup, "~> 0.8", [hex: :makeup, repo: "hexpm", optional: false]}], "hexpm"},
77
"markdown": {:git, "https://github.com/devinus/markdown.git", "d065dbcc4e242a85ca2516fdadd0082712871fd8", []},
88
"nimble_parsec": {:hex, :nimble_parsec, "0.5.0", "90e2eca3d0266e5c53f8fbe0079694740b9c91b6747f2b7e3c5d21966bba8300", [:mix], [], "hexpm"},
9-
"rustler": {:hex, :rustler, "0.20.0", "6b2cc8149700a7b1df2226dbe273ec1f9449318cad3bd3b5b68125a4cf1f438b", [:mix], [], "hexpm"},
9+
"rustler": {:hex, :rustler, "0.21.0", "68cc4fc015d0b9541865ea78e78e9ef2dd91ee4be80bf543fd15791102a45aca", [:mix], [{:toml, "~> 0.5.2", [hex: :toml, repo: "hexpm", optional: false]}], "hexpm"},
10+
"toml": {:hex, :toml, "0.5.2", "e471388a8726d1ce51a6b32f864b8228a1eb8edc907a0edf2bb50eab9321b526", [:mix], [], "hexpm"},
1011
}

native/meeseeks_html5ever_nif/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ path = "src/lib.rs"
99
crate-type = ["dylib"]
1010

1111
[dependencies]
12-
rustler = "0.20"
12+
rustler = "0.21"
1313

1414
html5ever = "0.22"
1515
xml5ever = "0.12"

0 commit comments

Comments
 (0)