File tree Expand file tree Collapse file tree 3 files changed +26
-6
lines changed Expand file tree Collapse file tree 3 files changed +26
-6
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66
77## [ Unreleased]
88
9+ ## [ 0.17.0] - 2025-08-15
10+
11+ ### Changed
12+
13+ - Require at least Rustler v0.36.0
14+
15+ - Require at least RustlerPrecompiled v0.8.
16+ This is dropping support for versions 0.6 and 0.7 of that dependency.
17+
18+ - Use newer versions of OS images to build the precompiled artifacts.
19+ Some of the images we were using are deprecated.
20+ Updated ` ubuntu-20.04 ` to ` ubuntu-22.04 ` , ` macos-11 ` to ` macos-13 ` and
21+ ` windows-2019 ` to ` windows-2022 ` . Those changes may break systems running
22+ in older versions of the related operational system.
23+
24+ ### Removed
25+
26+ - Remove support for Elixir 1.13.
27+
928## [ 0.16.1] - 2024-05-15
1029
1130### Fixed
@@ -177,7 +196,8 @@ is not needed for most of people using this project.
177196
178197- Add support for OTP 24. This was achieved by updating Rustler to v0.22.
179198
180- [ Unreleased ] : https://github.com/rusterlium/html5ever_elixir/compare/v0.16.1...HEAD
199+ [ Unreleased ] : https://github.com/rusterlium/html5ever_elixir/compare/v0.17.0...HEAD
200+ [ 0.17.0 ] : https://github.com/rusterlium/html5ever_elixir/compare/v0.16.1...v0.17.0
181201[ 0.16.1 ] : https://github.com/rusterlium/html5ever_elixir/compare/v0.16.0...v0.16.1
182202[ 0.16.0 ] : https://github.com/rusterlium/html5ever_elixir/compare/v0.15.0...v0.16.0
183203[ 0.15.0 ] : https://github.com/rusterlium/html5ever_elixir/compare/v0.14.3...v0.15.0
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ The package can be installed by adding `html5ever` to your list of dependencies
1212
1313``` elixir
1414def deps do
15- [{:html5ever , " ~> 0.16 .0" }]
15+ [{:html5ever , " ~> 0.17 .0" }]
1616end
1717```
1818
@@ -39,7 +39,7 @@ the compilation:
3939``` elixir
4040def deps do
4141 [
42- {:html5ever , " ~> 0.16 .0" },
42+ {:html5ever , " ~> 0.17 .0" },
4343 {:rustler , " >= 0.0.0" , optional: true }
4444 ]
4545end
Original file line number Diff line number Diff line change 11defmodule Html5ever.Mixfile do
22 use Mix.Project
33
4- @ version "0.16.1-dev "
4+ @ version "0.17.0 "
55 @ repo_url "https://github.com/rusterlium/html5ever_elixir"
66
77 def project do
@@ -24,8 +24,8 @@ defmodule Html5ever.Mixfile do
2424
2525 defp deps do
2626 [
27- { :rustler_precompiled , "~> 0.8.0 " } ,
28- { :rustler , "~> 0.36.0 " , optional: true } ,
27+ { :rustler_precompiled , "~> 0.8" } ,
28+ { :rustler , "~> 0.36" , optional: true } ,
2929 { :ex_doc , ">= 0.0.0" , only: :dev }
3030 ]
3131 end
You can’t perform that action at this time.
0 commit comments