Skip to content

Commit

Permalink
Bump to 0.0.3
Browse files Browse the repository at this point in the history
Upgrade to serde 1.0.0
  • Loading branch information
alexcrichton committed Apr 27, 2017
1 parent 86cee0b commit 24f3082
Show file tree
Hide file tree
Showing 3 changed files with 151 additions and 163 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "serde_ignored"
version = "0.0.2" # update version in readme for breaking changes
version = "0.0.3" # update version in readme for breaking changes
authors = ["David Tolnay <[email protected]>"]
license = "MIT/Apache-2.0"
description = "Find out about keys that are ignored when deserializing data"
Expand All @@ -9,8 +9,8 @@ keywords = ["serde"]
categories = ["encoding"]

[dependencies]
serde = "0.9"
serde = "1.0"

[dev-dependencies]
serde_derive = "0.9"
serde_json = "0.9"
serde_derive = "1.0"
serde_json = "1.0"
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ Note that if you want unrecognized fields to be an error, consider using the

```toml
[dependencies]
serde = "0.9"
serde_ignored = "0.0.2"
serde = "1.0"
serde_ignored = "0.0.3"
```

```rust
Expand Down
Loading

0 comments on commit 24f3082

Please sign in to comment.