Skip to content

Commit a2e0996

Browse files
committed
Cargo.toml: update
1 parent e254d24 commit a2e0996

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "dom_query"
3-
version = "0.9.1"
4-
description = "HTML querying and manipulation with CSS seletors"
3+
version = "0.10.0"
4+
description = "HTML querying and manipulation with CSS selectors"
55
license = "MIT"
66
repository = "https://github.com/niklak/dom_query"
77
documentation = "https://docs.rs/dom_query/latest"
@@ -19,7 +19,7 @@ selectors = "0.26.0"
1919
cssparser = "0.34.0"
2020
tendril = "0.4.3"
2121
foldhash = "0.1.3"
22-
hashbrown = {version = "0.15.1", default-features = false, features = ["allocator-api2", "inline-more", "default-hasher"], optional = true}
22+
hashbrown = {version = "0.15.2", default-features = false, features = ["allocator-api2", "inline-more", "default-hasher"], optional = true}
2323
precomputed-hash = "0.1.1"
2424

2525
[dev-dependencies]

src/dom_tree.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ impl Tree {
426426
}
427427
}
428428

429-
#[deprecated(since = "0.9.1", note = "please use `insert_before_of` instead")]
429+
#[deprecated(since = "0.10.0", note = "please use `insert_before_of` instead")]
430430
/// Append a sibling node in the tree before the given node.
431431
pub fn append_prev_sibling_of(&self, id: &NodeId, new_sibling_id: &NodeId) {
432432
self.insert_before_of(id, new_sibling_id);

src/node/node_ref.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ impl<'a> NodeRef<'a> {
176176
/// Appends another node by id to the parent node of the selected node.
177177
/// Another node takes place of the selected node.
178178
#[inline]
179-
#[deprecated(since = "0.9.1", note = "please use `insert_before` instead")]
179+
#[deprecated(since = "0.10.0", note = "please use `insert_before` instead")]
180180
pub fn append_prev_sibling<P: NodeIdProver>(&self, id_provider: P) {
181181
self.insert_before(id_provider);
182182
}
@@ -242,7 +242,7 @@ impl<'a> NodeRef<'a> {
242242
/// Appends another node and it's siblings to the parent node
243243
/// of the selected node, shifting itself.
244244
#[inline]
245-
#[deprecated(since = "0.9.1", note = "please use `insert_siblings_before` instead")]
245+
#[deprecated(since = "0.10.0", note = "please use `insert_siblings_before` instead")]
246246
pub fn append_prev_siblings<P: NodeIdProver>(&self, id_provider: P) {
247247
self.insert_siblings_before(id_provider);
248248
}

0 commit comments

Comments
 (0)