From 78359a859c356a6c756cccad16977fdedc4824c5 Mon Sep 17 00:00:00 2001 From: KokaKiwi Date: Mon, 10 Feb 2020 03:41:26 +0100 Subject: [PATCH] Bump version (v0.4.1) --- Cargo.toml | 4 ++-- src/lib.rs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 505be3b..ba9c9fb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hex" -version = "0.4.0" +version = "0.4.1" authors = ["KokaKiwi "] description = "Encoding and decoding data into/from hexadecimal representation." license = "MIT OR Apache-2.0" @@ -36,4 +36,4 @@ serde_json = "1.0" [package.metadata.docs.rs] all-features = true -rustdoc-args = ["--cfg", "docsrs"] \ No newline at end of file +rustdoc-args = ["--cfg", "docsrs"] diff --git a/src/lib.rs b/src/lib.rs index fac7454..a98c2a3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -21,7 +21,7 @@ //! # assert_eq!(hex_string, "48656c6c6f20776f726c6421"); //! ``` -#![doc(html_root_url = "https://docs.rs/hex/0.4.0")] +#![doc(html_root_url = "https://docs.rs/hex/0.4.1")] #![cfg_attr(not(feature = "std"), no_std)] #![cfg_attr(docsrs, feature(doc_cfg))] #![allow(clippy::unreadable_literal)]