diff --git a/Cargo.toml b/Cargo.toml index 1354353..f7878b6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serde_repr" -version = "0.1.10" +version = "0.1.11" authors = ["David Tolnay "] categories = ["encoding", "no-std"] description = "Derive Serialize and Deserialize that delegates to the underlying repr of a C-like enum." diff --git a/src/lib.rs b/src/lib.rs index e87e30d..0b812a7 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -34,7 +34,7 @@ //! } //! ``` -#![doc(html_root_url = "https://docs.rs/serde_repr/0.1.10")] +#![doc(html_root_url = "https://docs.rs/serde_repr/0.1.11")] #![allow(clippy::single_match_else)] extern crate proc_macro;