From fe71bd8a233b6232a11abb10bf833f718c0667b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Fri, 7 Apr 2017 13:07:19 +0200 Subject: [PATCH] Update string-cache in html5ever-atoms. --- Cargo.toml | 4 ++-- atoms/Cargo.toml | 6 +++--- xml5ever/CHANGELOG.md | 4 ++++ xml5ever/Cargo.toml | 4 ++-- 4 files changed, 11 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d57a0b70..c02cac4e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" @@ -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" diff --git a/atoms/Cargo.toml b/atoms/Cargo.toml index 14b8f44c..70c309a0 100644 --- a/atoms/Cargo.toml +++ b/atoms/Cargo.toml @@ -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" @@ -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" diff --git a/xml5ever/CHANGELOG.md b/xml5ever/CHANGELOG.md index e920e360..72e841f7 100644 --- a/xml5ever/CHANGELOG.md +++ b/xml5ever/CHANGELOG.md @@ -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. diff --git a/xml5ever/Cargo.toml b/xml5ever/Cargo.toml index c8a40e06..3fc12f3b 100644 --- a/xml5ever/Cargo.toml +++ b/xml5ever/Cargo.toml @@ -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/" @@ -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"