From 2681dcf0b3e6907111565199df8c43cc9aab7fe8 Mon Sep 17 00:00:00 2001 From: Harris Hancock Date: Wed, 7 Jun 2023 15:11:46 +0100 Subject: [PATCH] Release 1.0.1 --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- c-api/Cargo.toml | 2 +- js-api/Cargo.toml | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ac1e70c..683fe175 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## v1.0.1 + +### Fixed + +- The C API's new `lol_html_element_add_end_tag_handler()` function now sets the last error retrievable by `lol_html_take_last_error()` if it is called on an element that can have no end tag. + ## v1.0.0 Yes, you got that right: this is the first 1.x release! From now on you should expect this project to adhere to diff --git a/Cargo.toml b/Cargo.toml index 8e64f83d..d5056f6b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lol_html" -version = "1.0.0" +version = "1.0.1" authors = ["Ivan Nikulin "] license = "BSD-3-Clause" description = "Streaming HTML rewriter/parser with CSS selector-based API" diff --git a/c-api/Cargo.toml b/c-api/Cargo.toml index 0674d098..7c1a2e03 100644 --- a/c-api/Cargo.toml +++ b/c-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lolhtml" -version = "1.0.0" +version = "1.0.1" authors = ["Ivan Nikulin ", "Joshua Nelson "] edition = "2021" diff --git a/js-api/Cargo.toml b/js-api/Cargo.toml index ea71e820..99ac5251 100644 --- a/js-api/Cargo.toml +++ b/js-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lol-html-js-api" -version = "1.0.0" +version = "1.0.1" authors = ["Ivan Nikulin "] edition = "2021"