Skip to content

subtle-encoding v0.3.7 #218

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 5, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions subtle-encoding/CHANGES.md
Original file line number Diff line number Diff line change
@@ -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])
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion subtle-encoding/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>"]
license = "Apache-2.0 OR MIT"
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion subtle-encoding/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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?
Expand Down