diff --git a/serde/Cargo.toml b/serde/Cargo.toml index b2d43fd5..4f3f238f 100644 --- a/serde/Cargo.toml +++ b/serde/Cargo.toml @@ -1,8 +1,6 @@ [package] name = "serde" -# DO NOT RELEASE ANY MORE 0.7 RELEASES FROM THIS BRANCH -# USE THE 0.7.x BRANCH -version = "0.8.0-rc3" +version = "0.8.0" 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 02a4d7b4..5ded9638 100644 --- a/serde_codegen/Cargo.toml +++ b/serde_codegen/Cargo.toml @@ -1,8 +1,6 @@ [package] name = "serde_codegen" -# DO NOT RELEASE ANY MORE 0.7 RELEASES FROM THIS BRANCH -# USE THE 0.7.x BRANCH -version = "0.8.0-rc3" +version = "0.8.0" authors = ["Erick Tryzelaar "] license = "MIT/Apache-2.0" description = "Macros to auto-generate implementations for the serde framework" @@ -26,14 +24,14 @@ with-syntex = [ ] [build-dependencies] -quasi_codegen = { version = "^0.15.0", optional = true } -syntex = { version = "^0.38.0", optional = true } +quasi_codegen = { version = "^0.16.0", optional = true } +syntex = { version = "^0.39.0", optional = true } [dependencies] -aster = { version = "^0.21.1", default-features = false } +aster = { version = "^0.22.0", 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.4.0-rc1", default-features = false } -syntex = { version = "^0.38.0", optional = true } -syntex_syntax = { version = "^0.38.0", optional = true } +quasi = { version = "^0.16.0", default-features = false } +quasi_macros = { version = "^0.16.0", optional = true } +serde_codegen_internals = { version = "0.5.0", default-features = false } +syntex = { version = "^0.39.0", optional = true } +syntex_syntax = { version = "^0.39.0", optional = true } diff --git a/serde_codegen_internals/Cargo.toml b/serde_codegen_internals/Cargo.toml index 9a19e65e..d588dfd7 100644 --- a/serde_codegen_internals/Cargo.toml +++ b/serde_codegen_internals/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serde_codegen_internals" -version = "0.4.0-rc1" +version = "0.5.0" authors = ["Erick Tryzelaar "] license = "MIT/Apache-2.0" description = "AST representation used by Serde codegen. Unstable." @@ -16,5 +16,5 @@ with-syntex = ["syntex_syntax", "syntex_errors"] [dependencies] clippy = { version = "^0.*", optional = true } -syntex_syntax = { version = "^0.38.0", optional = true } -syntex_errors = { version = "^0.38.0", optional = true } +syntex_syntax = { version = "^0.39.0", optional = true } +syntex_errors = { version = "^0.39.0", optional = true } diff --git a/serde_macros/Cargo.toml b/serde_macros/Cargo.toml index cf268342..78132210 100644 --- a/serde_macros/Cargo.toml +++ b/serde_macros/Cargo.toml @@ -1,8 +1,6 @@ [package] name = "serde_macros" -# DO NOT RELEASE ANY MORE 0.7 RELEASES FROM THIS BRANCH -# USE THE 0.7.x BRANCH -version = "0.8.0-rc3" +version = "0.8.0" authors = ["Erick Tryzelaar "] license = "MIT/Apache-2.0" description = "Macros to auto-generate implementations for the serde framework" @@ -20,15 +18,15 @@ unstable-testing = ["clippy", "serde/unstable-testing", "serde_codegen/unstable- [dependencies] clippy = { version = "^0.*", optional = true } -serde_codegen = { version = "^0.8.0-rc3", default-features = false, features = ["unstable"] } +serde_codegen = { version = "0.8.0", 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-rc3" -serde_test = "0.8.0-rc3" +serde = "0.8.0" +serde_test = "0.8.0" [[test]] name = "test" diff --git a/serde_test/Cargo.toml b/serde_test/Cargo.toml index e0e1543c..96ad00a6 100644 --- a/serde_test/Cargo.toml +++ b/serde_test/Cargo.toml @@ -1,8 +1,6 @@ [package] name = "serde_test" -# DO NOT RELEASE ANY MORE 0.7 RELEASES FROM THIS BRANCH -# USE THE 0.7.x BRANCH -version = "0.8.0-rc3" +version = "0.8.0" authors = ["Erick Tryzelaar "] license = "MIT/Apache-2.0" description = "Token De/Serializer for testing De/Serialize implementations" @@ -13,4 +11,4 @@ keywords = ["serde", "serialization"] include = ["Cargo.toml", "src/**/*.rs"] [dependencies] -serde = "0.8.0-rc3" +serde = "0.8.0" diff --git a/testing/Cargo.toml b/testing/Cargo.toml index e46d8ad7..377513fd 100644 --- a/testing/Cargo.toml +++ b/testing/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serde_testing" -version = "0.8.0-rc3" +version = "0.8.0" authors = ["Erick Tryzelaar "] license = "MIT/Apache-2.0" description = "A generic serialization/deserialization framework"