From ca689aefc529a435acfa011a3e9ef78f56368432 Mon Sep 17 00:00:00 2001 From: Mykola Humanov Date: Sun, 16 Feb 2025 10:31:08 +0200 Subject: [PATCH] Cargo.toml: update, set version 0.14.0 --- CHANGELOG.md | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d05355a..69f2aa7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ All notable changes to the `dom_query` crate will be documented in this file. -## [Unreleased] +## [0.14.0] - 2025-02-16 ### Added - Implemented the `Node::id_attr` and `Node::class` methods, which return the `id` and `class` attributes of the node, respectively. `The Selection::id` and `Selection::class` methods do the same for the **first** node in the selection. diff --git a/Cargo.toml b/Cargo.toml index 4af9d08..22b542d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dom_query" -version = "0.13.3" +version = "0.14.0" description = "HTML querying and manipulation with CSS selectors" license = "MIT" repository = "https://github.com/niklak/dom_query"