Skip to content

Commit

Permalink
Release v1.0.0. (#183)
Browse files Browse the repository at this point in the history
  • Loading branch information
orium authored May 24, 2023
1 parent ec1b05a commit a005329
Show file tree
Hide file tree
Showing 11 changed files with 34 additions and 4 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 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
the semantic versioning spec (we have been somewhat relaxed about that in the past).

### Added

* Added `Element::end_tag_handlers()` which allows better control over the end tag handlers.

### Changed

* Removed `Element::on_end_tag()` and `Element::add_on_end_tag()` in favor of the newly added
`Element::end_tag_handlers()`.

## v0.4.0

### Added
Expand Down
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.4.0"
version = "1.0.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: 3 additions & 1 deletion c-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
[package]
name = "lolhtml"
version = "0.2.0"
version = "1.0.0"
authors = ["Ivan Nikulin <[email protected]>", "Joshua Nelson <[email protected]>"]
edition = "2021"

publish = false

[dependencies]
encoding_rs = "0.8.13"
lol_html = { path = "../" }
Expand Down
2 changes: 2 additions & 0 deletions c-api/tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ authors = ["Ivan Nikulin <[email protected]>"]
edition = "2021"
build = "build.rs"

publish = false

[dependencies]
lol_html = { path = "../../" }
lolhtml = { path = "../" }
Expand Down
2 changes: 1 addition & 1 deletion fuzz/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@

[package]
name = "lol_html-fuzz"
version = "0.0.1"
authors = ["Automatically generated"]

publish = false

[package.metadata]
Expand Down
2 changes: 2 additions & 0 deletions fuzz/afl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ version = "0.1.0"
authors = ["Yevgen Safronov <[email protected]>"]
edition = "2021"

publish = false

[dependencies]
test_case = { path = "../test_case" }
afl = "0.12.11"
2 changes: 2 additions & 0 deletions fuzz/hongg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ version = "0.1.0"
authors = ["Yevgen Safronov <[email protected]>"]
edition = "2021"

publish = false

[dependencies]
honggfuzz = "0.5.45"
test_case = { path = "../test_case" }
2 changes: 2 additions & 0 deletions fuzz/test_case/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ version = "0.1.0"
authors = ["Yevgen Safronov <[email protected]>"]
edition = "2021"

publish = false

[dependencies]
lol_html = { path = "../../" }
encoding_rs = "0.8.13"
Expand Down
4 changes: 3 additions & 1 deletion js-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
[package]
name = "lol-html-js-api"
version = "0.1.0"
version = "1.0.0"
authors = ["Ivan Nikulin <[email protected]>"]
edition = "2021"

publish = false

[dependencies]
js-sys = "0.3.33"
lol_html = { path = "../" }
Expand Down
2 changes: 2 additions & 0 deletions tools/parser_trace/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ version = "0.1.0"
authors = ["Ivan Nikulin <[email protected]>"]
edition = "2021"

publish = false

[dependencies]
encoding_rs = "0.8.13"
lol_html = { path = "../../", features=["integration_test", "debug_trace"] }
Expand Down
2 changes: 2 additions & 0 deletions tools/selectors_ast/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ version = "0.1.0"
authors = ["Ivan Nikulin <[email protected]>"]
edition = "2021"

publish = false

[dependencies]
lol_html = { path = "../../", features=["integration_test"] }
serde_json = "1.0.5"

0 comments on commit a005329

Please sign in to comment.