Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "html5ever"
version = "0.14.1"
version = "0.15.0"
authors = [ "The html5ever Project Developers" ]
license = "MIT / Apache-2.0"
repository = "https://github.com/servo/html5ever"
Expand Down Expand Up @@ -41,7 +41,7 @@ mac = "0"
tendril = "0.2.2"
heapsize = { version = "0.3", optional = true }
heapsize_derive = { version = "0.1", optional = true }
html5ever-atoms = { version = "0.2", path = "./atoms" }
html5ever-atoms = { version = "0.3", path = "./atoms" }

[dev-dependencies]
rustc-serialize = "0.3.15"
Expand Down
6 changes: 3 additions & 3 deletions atoms/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "html5ever-atoms"
version = "0.2.2"
version = "0.3.0"
authors = [ "The html5ever Project Developers" ]
license = "MIT / Apache-2.0"
repository = "https://github.com/servo/html5ever"
Expand All @@ -15,9 +15,9 @@ path = "lib.rs"
heap_size = ["heapsize", "heapsize_derive", "string_cache/heapsize"]

[dependencies]
string_cache = "0.4"
string_cache = "0.5"
heapsize = { version = "0.3", optional = true }
heapsize_derive = { version = "0.1", optional = true }

[build-dependencies]
string_cache_codegen = "0.3"
string_cache_codegen = "0.4"
4 changes: 4 additions & 0 deletions xml5ever/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [0.4.1] - 2017-02-17
### Changed
- Changed dependency constraints to be more precise

## [0.5.0] - 2017-04-07
### Changed
- Breaking string-cache update.
4 changes: 2 additions & 2 deletions xml5ever/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xml5ever"
version = "0.4.3"
version = "0.5.0"
description = "Push based streaming parser for xml"
homepage = "https://github.com/servo/html5ever/blob/master/xml5ever/README.md"
documentation = "https://docs.rs/xml5ever/"
Expand All @@ -21,7 +21,7 @@ log = "0.3"
phf = "0.7"
mac = "0.1"
tendril = "0.2"
html5ever-atoms = "0.2"
html5ever-atoms = {version = "0.3", path = "../atoms" }

[dev-dependencies]
rustc-serialize = "0.3.15"
Expand Down