Skip to content

Commit eb0f61b

Browse files
committed
Release v0.34.2
1 parent 9f89380 commit eb0f61b

2 files changed

Lines changed: 14 additions & 2 deletions

File tree

CHANGELOG.md

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

88
## [Unreleased][unreleased]
99

10+
## [0.34.2] - 2023-02-24
11+
12+
### Added
13+
14+
- Add option to pass down arguments to the parser in `Floki.parse_document/2` and
15+
`Floki.parse_fragment/2`. Thanks [@Kuret](https://github.com/Kuret).
16+
17+
- Add support for returning more elements from the `Floki.traverse_and_update/2` function callback.
18+
This enables the creation of more elements in the tree, but should be used with care,
19+
since the tree can grow a lot if the change is not controlled. Thanks [@martosaur](https://github.com/martosaur).
20+
1021
## [0.34.1] - 2023-02-11
1122

1223
### Fixed
@@ -643,7 +654,8 @@ of the parent element inside HTML.
643654

644655
- Elixir version requirement from "~> 1.0.0" to ">= 1.0.0".
645656

646-
[unreleased]: https://github.com/philss/floki/compare/v0.34.1...HEAD
657+
[unreleased]: https://github.com/philss/floki/compare/v0.34.2...HEAD
658+
[0.34.2]: https://github.com/philss/floki/compare/v0.34.1...v0.34.2
647659
[0.34.1]: https://github.com/philss/floki/compare/v0.34.0...v0.34.1
648660
[0.34.0]: https://github.com/philss/floki/compare/v0.33.1...v0.34.0
649661
[0.33.1]: https://github.com/philss/floki/compare/v0.33.0...v0.33.1

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ defmodule Floki.Mixfile do
33

44
@description "Floki is a simple HTML parser that enables search for nodes using CSS selectors."
55
@source_url "https://github.com/philss/floki"
6-
@version "0.34.1"
6+
@version "0.34.2"
77

88
def project do
99
[

0 commit comments

Comments
 (0)