Skip to content

Commit

Permalink
Release 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Jul 28, 2016
1 parent dd864cb commit c1d1158
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 12 deletions.
7 changes: 2 additions & 5 deletions json/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "serde_json"
version = "0.8.0-rc1"
version = "0.8.0"
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>"]
license = "MIT/Apache-2.0"
description = "A JSON serialization file format"
Expand All @@ -14,12 +14,9 @@ unstable-testing = ["clippy"]
preserve_order = ["linked-hash-map", "linked-hash-map/serde_impl"]

[dependencies]
serde = "0.8.0-rc3"
serde = "0.8.0"
num-traits = "~0.1.32"
clippy = { version = "^0.*", optional = true }
linked-hash-map = { version = "0.1", optional = true }
itoa = "0.1"
dtoa = "0.2"

[replace]
"serde:0.8.0-rc3" = { git = "https://github.com/serde-rs/serde" }
11 changes: 4 additions & 7 deletions json_tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "serde_json_tests"
version = "0.8.0-rc1"
version = "0.8.0"
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>"]
build = "build.rs"

Expand All @@ -11,7 +11,7 @@ unstable-testing = ["clippy", "serde_json/clippy"]

[build-dependencies]
indoc = "*"
serde_codegen = { version = "0.8.0-rc3", optional = true }
serde_codegen = { version = "0.8.0", optional = true }
skeptic = "^0.4.0"
syntex = { version = "*", optional = true }

Expand All @@ -20,9 +20,9 @@ clippy = { version = "^0.*", optional = true }
indoc = "*"
num-traits = "*"
rustc-serialize = "*"
serde = "0.8.0-rc3"
serde = "0.8.0"
serde_json = { path = "../json" }
serde_macros = { version = "0.8.0-rc3", optional = true }
serde_macros = { version = "0.8.0", optional = true }
skeptic = "^0.4.0"

[[test]]
Expand All @@ -32,6 +32,3 @@ path = "tests/test.rs"
[[bench]]
name = "bench"
path = "benches/bench.rs"

[replace]
"serde:0.8.0-rc3" = { git = "https://github.com/serde-rs/serde" }

0 comments on commit c1d1158

Please sign in to comment.