Skip to content

Commit 636bde3

Browse files
authored
Merge pull request #66 from mischov/chore/otp-22
Support OTP 22
2 parents 8bb06ce + 9409e0e commit 636bde3

File tree

4 files changed

+13
-14
lines changed

4 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
@@ -72,7 +72,7 @@ For details and benchmarks, see [Meeseeks vs. Floki Performance](https://github.
7272

7373
## Compatibility
7474

75-
Meeseeks 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.
75+
Meeseeks is tested with a minimum combination of Elixir 1.6.0 and Erlang/OTP 20, and a maximum combination of Elixir 1.9.0 and Erlang/OTP 22.0.
7676

7777
## Dependencies
7878

mix.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ defmodule Meeseeks.Mixfile do
77
[
88
app: :meeseeks,
99
version: @version,
10-
elixir: "~> 1.4",
10+
elixir: "~> 1.6",
1111
deps: deps(),
1212

1313
# Hex
@@ -27,7 +27,7 @@ defmodule Meeseeks.Mixfile do
2727

2828
defp deps do
2929
[
30-
{:meeseeks_html5ever, "~> 0.11.1"},
30+
{:meeseeks_html5ever, "~> 0.12.0"},
3131

3232
# dev
3333
{:dialyxir, "~> 0.5", only: :dev, runtime: false},

mix.lock

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
"makeup": {:hex, :makeup, "0.8.0", "9cf32aea71c7fe0a4b2e9246c2c4978f9070257e5c9ce6d4a28ec450a839b55f", [:mix], [{:nimble_parsec, "~> 0.5.0", [hex: :nimble_parsec, repo: "hexpm", optional: false]}], "hexpm"},
99
"makeup_elixir": {:hex, :makeup_elixir, "0.13.0", "be7a477997dcac2e48a9d695ec730b2d22418292675c75aa2d34ba0909dcdeda", [:mix], [{:makeup, "~> 0.8", [hex: :makeup, repo: "hexpm", optional: false]}], "hexpm"},
1010
"markdown": {:git, "https://github.com/devinus/markdown.git", "d065dbcc4e242a85ca2516fdadd0082712871fd8", []},
11-
"meeseeks_html5ever": {:hex, :meeseeks_html5ever, "0.11.1", "aa2cd25021e055e0bd206beae73660cc198a6c90a3a6eca1aee8e8d7c48307b7", [:mix], [{:rustler, "~> 0.20.0", [hex: :rustler, repo: "hexpm", optional: false]}], "hexpm"},
11+
"meeseeks_html5ever": {:hex, :meeseeks_html5ever, "0.12.0", "f915d91a8dea0d6f8d0c4bf89c93a6df7bd733ec7da5bb8b6e7b77d9f5431e7a", [:mix], [{:rustler, "~> 0.21.0", [hex: :rustler, repo: "hexpm", optional: false]}], "hexpm"},
1212
"nimble_parsec": {:hex, :nimble_parsec, "0.5.0", "90e2eca3d0266e5c53f8fbe0079694740b9c91b6747f2b7e3c5d21966bba8300", [:mix], [], "hexpm"},
13-
"rustler": {:hex, :rustler, "0.20.0", "6b2cc8149700a7b1df2226dbe273ec1f9449318cad3bd3b5b68125a4cf1f438b", [:mix], [], "hexpm"},
13+
"rustler": {:hex, :rustler, "0.21.0", "68cc4fc015d0b9541865ea78e78e9ef2dd91ee4be80bf543fd15791102a45aca", [:mix], [{:toml, "~> 0.5.2", [hex: :toml, repo: "hexpm", optional: false]}], "hexpm"},
14+
"toml": {:hex, :toml, "0.5.2", "e471388a8726d1ce51a6b32f864b8228a1eb8edc907a0edf2bb50eab9321b526", [:mix], [], "hexpm"},
1415
}

0 commit comments

Comments
 (0)