Skip to content

Commit 5f87ef1

Browse files
committed
Change support of Elixir to "~> 1.11"
1 parent 4efd35a commit 5f87ef1

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9-
### Added
9+
### Security
1010

1111
- Add checksum verification of precompiled NIF files before extracting
1212
them to the correct location. This is to avoid supply chain attacks.
@@ -16,6 +16,11 @@ the user can download only the local NIF file with the checksum.
1616
See the `RELEASE_CHECKLIST.md` file for details on how we ensure this
1717
works correctly.
1818

19+
### Removed
20+
21+
- Remove support for Elixir 1.10 and below. This is to keep a policy of
22+
supporting the latest three Elixir versions.
23+
1924
### Changed
2025

2126
- Switch from thread pool to being a dirty NIF. This prevents the

mix.exs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,9 @@ defmodule Html5ever.Mixfile do
88
[
99
app: :html5ever,
1010
version: @version,
11-
elixir: "~> 1.4",
11+
elixir: "~> 1.11",
1212
build_embedded: Mix.env() == :prod,
1313
start_permanent: Mix.env() == :prod,
14-
compilers: Mix.compilers(),
1514
deps: deps(),
1615
docs: docs(),
1716
description: "NIF binding of html5ever using Rustler",

0 commit comments

Comments
 (0)