From 41e0cde9a352cbd0e55bd7663fbe931a31085547 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Mon, 25 Jul 2016 10:44:58 -0700 Subject: [PATCH] Release 0.4.0-rc1 --- yaml/Cargo.toml | 2 +- yaml_tests/Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/yaml/Cargo.toml b/yaml/Cargo.toml index 73186ba1..4f301ffc 100644 --- a/yaml/Cargo.toml +++ b/yaml/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serde_yaml" -version = "0.3.0" +version = "0.4.0-rc1" authors = ["David Tolnay "] license = "MIT/Apache-2.0" description = "YAML support for Serde" diff --git a/yaml_tests/Cargo.toml b/yaml_tests/Cargo.toml index 2442e12a..16b01dde 100644 --- a/yaml_tests/Cargo.toml +++ b/yaml_tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serde_yaml_tests" -version = "0.3.0" +version = "0.4.0-rc1" authors = ["David Tolnay "] build = "build.rs" @@ -15,7 +15,7 @@ indoc = "*" [dependencies] serde = "0.8.0-rc3" -serde_yaml = { version = "*", path = "../yaml" } +serde_yaml = { path = "../yaml" } serde_macros = { version = "0.8.0-rc3", optional = true } indoc = "*"