Skip to content

Commit

Permalink
Release v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
inikulin committed Mar 6, 2020
1 parent 59ce112 commit 344063e
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 18 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Changelog

## v0.2.0
- Added: `DocumentContentHandlers::end`.

## v0.1.0
- Initial release
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lol_html"
version = "0.1.0"
version = "0.2.0"
authors = ["Ivan Nikulin <[email protected], [email protected]>"]
license = "BSD-3-Clause"
description = "Streaming HTML rewriter/parser with CSS selector-based API"
Expand Down
4 changes: 2 additions & 2 deletions c-api/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions c-api/tests/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions fuzz/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions fuzz/test_case/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions js-api/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions src/rewritable_units/element.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1050,11 +1050,11 @@ mod tests {
#[test]
fn add_attr() {
test!(
|el| {
el.set_attribute("a5", r#"42'"42"#).unwrap();
},
r#"<a a1='foo " baré " baz' a2="foo ' bar ' baz" a3=foo/bar a4 a5="42'&quot;42"></a>"#
);
|el| {
el.set_attribute("a5", r#"42'"42"#).unwrap();
},
r#"<a a1='foo " baré " baz' a2="foo ' bar ' baz" a3=foo/bar a4 a5="42'&quot;42"></a>"#
);
}

#[test]
Expand Down

0 comments on commit 344063e

Please sign in to comment.