Skip to content

Commit

Permalink
a new version: 0.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
niklak committed Mar 1, 2025
1 parent 9586ab6 commit 36c4077
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
All notable changes to the `dom_query` crate will be documented in this file.


## [Unreleased]
## [0.15.0] - 2025-03-01

### Added
- Implemented the `markdown` feature, which allows serializing a `Document` or `NodeRef` into Markdown text using the `md()` method.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dom_query"
version = "0.14.0"
version = "0.15.0"
description = "HTML querying and manipulation with CSS selectors"
license = "MIT"
repository = "https://github.com/niklak/dom_query"
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -839,12 +839,13 @@ assert_eq!(got.as_ref(), expected);

## Crate features

- `hashbrown` — optional, standard hashmaps and hashsets will be replaced `hashbrown` hashmaps and hashsets;
- `hashbrown` — optional,replaces standard hashmaps and hashsets with `hashbrown` hashmaps and hashsets.
- `atomic` — optional, switches `NodeData` from using `StrTendril` to `Tendril<tendril::fmt::UTF8, tendril::Atomic>`.
This allows `NodeData` and all ascending structures, including `Document`, to implement the `Send` trait;
- `markdown` — optional, enables the `Document::md` and `NodeRef::md` methods, allowing serialization of a document or node to `Markdown` text.
- `mini_selector` — optional, provides a lightweight and faster alternative for element matching with limited CSS selector support.
This includes additional `NodeRef` methods: `find_descendants`, `try_find_descendants`, `mini_is`, and `mini_match`.
*This is an experimental feature that may change in future releases.*

## Possible issues
* [wasm32 compilation](https://niklak.github.io/dom_query_by_example/WASM32-compilation.html)
Expand Down

0 comments on commit 36c4077

Please sign in to comment.