Skip to content

Commit

Permalink
Release v0.33.0
Browse files Browse the repository at this point in the history
  • Loading branch information
philss committed Jun 28, 2022
1 parent 7f2213d commit 5a04965
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased][unreleased]

## [0.33.0] - 2022-06-28

### Added

- Add support for searching elements that contains text in a case-insensitive manner with
`fl-icontains` - thanks [@nuno84](https://github.com/nuno84)

### Changed

- Drop support for Elixir 1.8 and 1.9.
- Fix and improve internal things - thanks [@derek-zhou](https://github.com/derek-zhou) and [@hissssst](https://github.com/hissssst)

## [0.32.1] - 2022-03-24

Expand Down Expand Up @@ -600,7 +608,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.32.1...HEAD
[unreleased]: https://github.com/philss/floki/compare/v0.33.0...HEAD
[0.33.0]: https://github.com/philss/floki/compare/v0.32.1...v0.33.0
[0.32.1]: https://github.com/philss/floki/compare/v0.32.0...v0.32.1
[0.32.0]: https://github.com/philss/floki/compare/v0.31.0...v0.32.0
[0.31.0]: https://github.com/philss/floki/compare/v0.30.1...v0.31.0
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.32.0"}
{:floki, "~> 0.33.0"}
]
end
```
Expand Down Expand Up @@ -120,8 +120,8 @@ After Rust is set up, you need to add `html5ever` NIF to your dependency list:
```elixir
defp deps do
[
{:floki, "~> 0.32.0"},
{:html5ever, "~> 0.12.0"}
{:floki, "~> 0.33.0"},
{:html5ever, "~> 0.13.0"}
]
end
```
Expand All @@ -148,7 +148,7 @@ First, add `fast_html` to your dependencies:
```elixir
defp deps do
[
{:floki, "~> 0.32.0"},
{:floki, "~> 0.33.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.33.0-dev"
@version "0.33.0"

def project do
[
Expand Down

0 comments on commit 5a04965

Please sign in to comment.