diff --git a/Cargo.toml b/Cargo.toml index 35e4d79..78ea7e1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/README.md b/README.md index f1ae684..79b0696 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/src/lib.rs b/src/lib.rs index 0e2d5fb..b80b564 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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};