From 94cce18a51bc169869f2cdcea6549b3ed81b3b2e Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 29 Oct 2023 21:19:08 -0400 Subject: [PATCH] Release 0.1.17 --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8e5e8ce..8a74653 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serde_repr" -version = "0.1.16" +version = "0.1.17" authors = ["David Tolnay "] categories = ["encoding", "no-std", "no-std::no-alloc"] 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 51009bd..83aa133 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -34,7 +34,7 @@ //! } //! ``` -#![doc(html_root_url = "https://docs.rs/serde_repr/0.1.16")] +#![doc(html_root_url = "https://docs.rs/serde_repr/0.1.17")] #![allow(clippy::single_match_else)] extern crate proc_macro;