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)]