Skip to content

Commit

Permalink
Release v0.35.0
Browse files Browse the repository at this point in the history
  • Loading branch information
philss committed Oct 13, 2023
1 parent 9a6d040 commit bc410df
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Add Floki to your `mix.exs`:
```elixir
defp deps do
[
{:floki, "~> 0.34.0"}
{:floki, "~> 0.35.0"}
]
end
```
Expand Down Expand Up @@ -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
```
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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
[
Expand Down

0 comments on commit bc410df

Please sign in to comment.