Skip to content

Commit 344063e

Browse files
committed
Release v0.2.0
1 parent 59ce112 commit 344063e

File tree

9 files changed

+25
-18
lines changed

9 files changed

+25
-18
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Changelog
2+
3+
## v0.2.0
4+
- Added: `DocumentContentHandlers::end`.
5+
6+
## v0.1.0
7+
- Initial release

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.1.0"
3+
version = "0.2.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.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

c-api/tests/Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

fuzz/Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

fuzz/test_case/Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js-api/Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/rewritable_units/element.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -1050,11 +1050,11 @@ mod tests {
10501050
#[test]
10511051
fn add_attr() {
10521052
test!(
1053-
|el| {
1054-
el.set_attribute("a5", r#"42'"42"#).unwrap();
1055-
},
1056-
r#"<a a1='foo " baré " baz' a2="foo ' bar ' baz" a3=foo/bar a4 a5="42'&quot;42"></a>"#
1057-
);
1053+
|el| {
1054+
el.set_attribute("a5", r#"42'"42"#).unwrap();
1055+
},
1056+
r#"<a a1='foo " baré " baz' a2="foo ' bar ' baz" a3=foo/bar a4 a5="42'&quot;42"></a>"#
1057+
);
10581058
}
10591059

10601060
#[test]

0 commit comments

Comments
 (0)