diff --git a/Cargo.lock b/Cargo.lock index 9c7d3994..9bdfde62 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -341,7 +341,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "subtle-encoding" -version = "0.3.6" +version = "0.3.7" dependencies = [ "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/subtle-encoding/CHANGES.md b/subtle-encoding/CHANGES.md index af4aa61e..e4e1f47d 100644 --- a/subtle-encoding/CHANGES.md +++ b/subtle-encoding/CHANGES.md @@ -1,3 +1,7 @@ +## [0.3.7] (2019-05-19) + +- `zeroize` v0.9.0 ([#215]) + ## [0.3.6] (2019-05-19) - `zeroize` v0.8.0 ([#189]) @@ -52,6 +56,8 @@ - Initial release +[0.3.7]: https://github.com/iqlusioninc/crates/pull/218 +[#215]: https://github.com/iqlusioninc/crates/pull/215 [0.3.5]: https://github.com/iqlusioninc/crates/pull/187 [#186]: https://github.com/iqlusioninc/crates/pull/186 [0.3.4]: https://github.com/iqlusioninc/crates/pull/171 diff --git a/subtle-encoding/Cargo.toml b/subtle-encoding/Cargo.toml index b40ce39b..92a75b1b 100644 --- a/subtle-encoding/Cargo.toml +++ b/subtle-encoding/Cargo.toml @@ -6,7 +6,7 @@ description = """ provide "best effort" constant time. Useful for encoding/decoding secret values such as cryptographic keys. """ -version = "0.3.6" # Also update html_root_url in lib.rs when bumping this +version = "0.3.7" # Also update html_root_url in lib.rs when bumping this authors = ["Tony Arcieri "] license = "Apache-2.0 OR MIT" edition = "2018" diff --git a/subtle-encoding/src/lib.rs b/subtle-encoding/src/lib.rs index 845f6415..3822d644 100644 --- a/subtle-encoding/src/lib.rs +++ b/subtle-encoding/src/lib.rs @@ -15,7 +15,7 @@ #![no_std] #![deny(warnings, missing_docs, unused_import_braces, unused_qualifications)] #![forbid(unsafe_code)] -#![doc(html_root_url = "https://docs.rs/subtle-encoding/0.3.6")] +#![doc(html_root_url = "https://docs.rs/subtle-encoding/0.3.7")] #[cfg(all(feature = "alloc", not(feature = "std")))] #[allow(unused_imports)] // rustc bug?