From bc410df717648515e617bfd1419db64d9c21e195 Mon Sep 17 00:00:00 2001 From: Philip Sampaio Date: Fri, 13 Oct 2023 15:10:33 -0300 Subject: [PATCH] Release v0.35.0 --- CHANGELOG.md | 5 ++++- README.md | 8 ++++---- mix.exs | 2 +- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 49385cae..3e2f68f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased][unreleased] +## [0.35.0] - 2023-10-13 + ### Added - Add support for parsing attributes as maps. @@ -688,7 +690,8 @@ of the parent element inside HTML. - Elixir version requirement from "~> 1.0.0" to ">= 1.0.0". -[unreleased]: https://github.com/philss/floki/compare/v0.34.3...HEAD +[unreleased]: https://github.com/philss/floki/compare/v0.35.0...HEAD +[0.35.0]: https://github.com/philss/floki/compare/v0.34.3...v0.35.0 [0.34.3]: https://github.com/philss/floki/compare/v0.34.2...v0.34.3 [0.34.2]: https://github.com/philss/floki/compare/v0.34.1...v0.34.2 [0.34.1]: https://github.com/philss/floki/compare/v0.34.0...v0.34.1 diff --git a/README.md b/README.md index 2960ef2f..9d5462c4 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ Add Floki to your `mix.exs`: ```elixir defp deps do [ - {:floki, "~> 0.34.0"} + {:floki, "~> 0.35.0"} ] end ``` @@ -118,8 +118,8 @@ you don't need to install anything to compile it thanks to [RustlerPrecompiled]( ```elixir defp deps do [ - {:floki, "~> 0.34.0"}, - {:html5ever, "~> 0.14.0"} + {:floki, "~> 0.35.0"}, + {:html5ever, "~> 0.15.0"} ] end ``` @@ -146,7 +146,7 @@ First, add `fast_html` to your dependencies: ```elixir defp deps do [ - {:floki, "~> 0.34.0"}, + {:floki, "~> 0.35.0"}, {:fast_html, "~> 2.0"} ] end diff --git a/mix.exs b/mix.exs index 071a4393..3d4ff751 100644 --- a/mix.exs +++ b/mix.exs @@ -3,7 +3,7 @@ defmodule Floki.Mixfile do @description "Floki is a simple HTML parser that enables search for nodes using CSS selectors." @source_url "https://github.com/philss/floki" - @version "0.34.3" + @version "0.35.0" def project do [