Skip to content

Commit

Permalink
Release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Aug 18, 2019
1 parent 57f9101 commit 2f46e83
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "serde_ignored"
version = "0.0.4" # update html_root_url and version in readme
version = "0.1.0" # update html_root_url and version in readme
authors = ["David Tolnay <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Note that if you want unrecognized fields to be an error, consider using the
```toml
[dependencies]
serde = "1.0"
serde_ignored = "0.0.4"
serde_ignored = "0.1"
```

```rust
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
//! # fn main() { try_main().unwrap() }
//! ```

#![doc(html_root_url = "https://docs.rs/serde_ignored/0.0.4")]
#![doc(html_root_url = "https://docs.rs/serde_ignored/0.1.0")]

use serde::de::{self, Deserialize, DeserializeSeed, Visitor};
use std::fmt::{self, Display};
Expand Down

0 comments on commit 2f46e83

Please sign in to comment.