From aaca4f06c611386696112026e6f18fcaf82f756f Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 17 Jul 2016 17:52:48 -0700 Subject: [PATCH] Release 0.8.0-rc2 --- serde/Cargo.toml | 2 +- serde_codegen/Cargo.toml | 4 ++-- serde_codegen_internals/Cargo.toml | 2 +- serde_macros/Cargo.toml | 8 ++++---- serde_test/Cargo.toml | 4 ++-- testing/Cargo.toml | 2 +- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/serde/Cargo.toml b/serde/Cargo.toml index 54b4f5a4..fbb53b19 100644 --- a/serde/Cargo.toml +++ b/serde/Cargo.toml @@ -2,7 +2,7 @@ name = "serde" # DO NOT RELEASE ANY MORE 0.7 RELEASES FROM THIS BRANCH # USE THE 0.7.x BRANCH -version = "0.8.0-rc1" +version = "0.8.0-rc2" authors = ["Erick Tryzelaar "] license = "MIT/Apache-2.0" description = "A generic serialization/deserialization framework" diff --git a/serde_codegen/Cargo.toml b/serde_codegen/Cargo.toml index 1a4c1cc6..d13a3610 100644 --- a/serde_codegen/Cargo.toml +++ b/serde_codegen/Cargo.toml @@ -2,7 +2,7 @@ name = "serde_codegen" # DO NOT RELEASE ANY MORE 0.7 RELEASES FROM THIS BRANCH # USE THE 0.7.x BRANCH -version = "0.8.0-rc1" +version = "0.8.0-rc2" authors = ["Erick Tryzelaar "] license = "MIT/Apache-2.0" description = "Macros to auto-generate implementations for the serde framework" @@ -34,6 +34,6 @@ aster = { version = "^0.21.1", default-features = false } clippy = { version = "^0.*", optional = true } quasi = { version = "^0.15.0", default-features = false } quasi_macros = { version = "^0.15.0", optional = true } -serde_codegen_internals = { version = "^0.3.0", default-features = false } +serde_codegen_internals = { version = "0.4.0-rc1", default-features = false } syntex = { version = "^0.38.0", optional = true } syntex_syntax = { version = "^0.38.0", optional = true } diff --git a/serde_codegen_internals/Cargo.toml b/serde_codegen_internals/Cargo.toml index db6b2e19..9a19e65e 100644 --- a/serde_codegen_internals/Cargo.toml +++ b/serde_codegen_internals/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serde_codegen_internals" -version = "0.3.0" +version = "0.4.0-rc1" authors = ["Erick Tryzelaar "] license = "MIT/Apache-2.0" description = "AST representation used by Serde codegen. Unstable." diff --git a/serde_macros/Cargo.toml b/serde_macros/Cargo.toml index 36237262..5381d499 100644 --- a/serde_macros/Cargo.toml +++ b/serde_macros/Cargo.toml @@ -2,7 +2,7 @@ name = "serde_macros" # DO NOT RELEASE ANY MORE 0.7 RELEASES FROM THIS BRANCH # USE THE 0.7.x BRANCH -version = "0.8.0-rc1" +version = "0.8.0-rc2" authors = ["Erick Tryzelaar "] license = "MIT/Apache-2.0" description = "Macros to auto-generate implementations for the serde framework" @@ -20,15 +20,15 @@ unstable-testing = ["clippy", "serde/unstable-testing", "serde_codegen/unstable- [dependencies] clippy = { version = "^0.*", optional = true } -serde_codegen = { version = "^0.8.0-rc1", default-features = false, features = ["unstable"] } +serde_codegen = { version = "^0.8.0-rc2", default-features = false, features = ["unstable"] } [dev-dependencies] clippy = "^0.*" compiletest_rs = "^0.2.0" fnv = "1.0" rustc-serialize = "^0.3.16" -serde = "0.8.0-rc1" -serde_test = "0.8.0-rc1" +serde = "0.8.0-rc2" +serde_test = "0.8.0-rc2" [[test]] name = "test" diff --git a/serde_test/Cargo.toml b/serde_test/Cargo.toml index 38d16702..9855d12f 100644 --- a/serde_test/Cargo.toml +++ b/serde_test/Cargo.toml @@ -2,7 +2,7 @@ name = "serde_test" # DO NOT RELEASE ANY MORE 0.7 RELEASES FROM THIS BRANCH # USE THE 0.7.x BRANCH -version = "0.8.0-rc1" +version = "0.8.0-rc2" authors = ["Erick Tryzelaar "] license = "MIT/Apache-2.0" description = "Token De/Serializer for testing De/Serialize implementations" @@ -13,4 +13,4 @@ keywords = ["serde", "serialization"] include = ["Cargo.toml", "src/**/*.rs"] [dependencies] -serde = "0.8.0-rc1" +serde = "0.8.0-rc2" diff --git a/testing/Cargo.toml b/testing/Cargo.toml index 7a6dbd8e..fd7fa514 100644 --- a/testing/Cargo.toml +++ b/testing/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serde_testing" -version = "0.8.0-rc1" +version = "0.8.0-rc2" authors = ["Erick Tryzelaar "] license = "MIT/Apache-2.0" description = "A generic serialization/deserialization framework"