Skip to content

Commit a005329

Browse files
authored
Release v1.0.0. (#183)
1 parent ec1b05a commit a005329

File tree

11 files changed

+34
-4
lines changed

11 files changed

+34
-4
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## v1.0.0
4+
5+
Yes, you got that right: this is the first 1.x release! From now on you should expect this project to adhere to
6+
the semantic versioning spec (we have been somewhat relaxed about that in the past).
7+
8+
### Added
9+
10+
* Added `Element::end_tag_handlers()` which allows better control over the end tag handlers.
11+
12+
### Changed
13+
14+
* Removed `Element::on_end_tag()` and `Element::add_on_end_tag()` in favor of the newly added
15+
`Element::end_tag_handlers()`.
16+
317
## v0.4.0
418

519
### Added

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lol_html"
3-
version = "0.4.0"
3+
version = "1.0.0"
44
authors = ["Ivan Nikulin <inikulin@cloudflare.com, ifaaan@gmail.com>"]
55
license = "BSD-3-Clause"
66
description = "Streaming HTML rewriter/parser with CSS selector-based API"

c-api/Cargo.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
[package]
22
name = "lolhtml"
3-
version = "0.2.0"
3+
version = "1.0.0"
44
authors = ["Ivan Nikulin <inikulin@cloudflare.com>", "Joshua Nelson <jnelson@cloudflare.com>"]
55
edition = "2021"
66

7+
publish = false
8+
79
[dependencies]
810
encoding_rs = "0.8.13"
911
lol_html = { path = "../" }

c-api/tests/Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ authors = ["Ivan Nikulin <inikulin@cloudflare.com>"]
55
edition = "2021"
66
build = "build.rs"
77

8+
publish = false
9+
810
[dependencies]
911
lol_html = { path = "../../" }
1012
lolhtml = { path = "../" }

fuzz/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
21
[package]
32
name = "lol_html-fuzz"
43
version = "0.0.1"
54
authors = ["Automatically generated"]
5+
66
publish = false
77

88
[package.metadata]

fuzz/afl/Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ version = "0.1.0"
44
authors = ["Yevgen Safronov <yevgen@cloudflare.com>"]
55
edition = "2021"
66

7+
publish = false
8+
79
[dependencies]
810
test_case = { path = "../test_case" }
911
afl = "0.12.11"

fuzz/hongg/Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ version = "0.1.0"
44
authors = ["Yevgen Safronov <yevgen@cloudflare.com>"]
55
edition = "2021"
66

7+
publish = false
8+
79
[dependencies]
810
honggfuzz = "0.5.45"
911
test_case = { path = "../test_case" }

fuzz/test_case/Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ version = "0.1.0"
44
authors = ["Yevgen Safronov <yevgen@cloudflare.com>"]
55
edition = "2021"
66

7+
publish = false
8+
79
[dependencies]
810
lol_html = { path = "../../" }
911
encoding_rs = "0.8.13"

js-api/Cargo.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
[package]
22
name = "lol-html-js-api"
3-
version = "0.1.0"
3+
version = "1.0.0"
44
authors = ["Ivan Nikulin <inikulin@cloudflare.com>"]
55
edition = "2021"
66

7+
publish = false
8+
79
[dependencies]
810
js-sys = "0.3.33"
911
lol_html = { path = "../" }

tools/parser_trace/Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ version = "0.1.0"
44
authors = ["Ivan Nikulin <inikulin@cloudflare.com>"]
55
edition = "2021"
66

7+
publish = false
8+
79
[dependencies]
810
encoding_rs = "0.8.13"
911
lol_html = { path = "../../", features=["integration_test", "debug_trace"] }

tools/selectors_ast/Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ version = "0.1.0"
44
authors = ["Ivan Nikulin <inikulin@cloudflare.com>"]
55
edition = "2021"
66

7+
publish = false
8+
79
[dependencies]
810
lol_html = { path = "../../", features=["integration_test"] }
911
serde_json = "1.0.5"

0 commit comments

Comments
 (0)