Skip to content

Commit 94274a2

Browse files
Merge pull request #218 from iqlusioninc/subtle-encoding/v0.3.7
subtle-encoding v0.3.7
2 parents be70025 + 2649ee9 commit 94274a2

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

subtle-encoding/CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [0.3.7] (2019-05-19)
2+
3+
- `zeroize` v0.9.0 ([#215])
4+
15
## [0.3.6] (2019-05-19)
26

37
- `zeroize` v0.8.0 ([#189])
@@ -52,6 +56,8 @@
5256

5357
- Initial release
5458

59+
[0.3.7]: https://github.com/iqlusioninc/crates/pull/218
60+
[#215]: https://github.com/iqlusioninc/crates/pull/215
5561
[0.3.5]: https://github.com/iqlusioninc/crates/pull/187
5662
[#186]: https://github.com/iqlusioninc/crates/pull/186
5763
[0.3.4]: https://github.com/iqlusioninc/crates/pull/171

subtle-encoding/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description = """
66
provide "best effort" constant time. Useful for encoding/decoding
77
secret values such as cryptographic keys.
88
"""
9-
version = "0.3.6" # Also update html_root_url in lib.rs when bumping this
9+
version = "0.3.7" # Also update html_root_url in lib.rs when bumping this
1010
authors = ["Tony Arcieri <[email protected]>"]
1111
license = "Apache-2.0 OR MIT"
1212
edition = "2018"

subtle-encoding/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#![no_std]
1616
#![deny(warnings, missing_docs, unused_import_braces, unused_qualifications)]
1717
#![forbid(unsafe_code)]
18-
#![doc(html_root_url = "https://docs.rs/subtle-encoding/0.3.6")]
18+
#![doc(html_root_url = "https://docs.rs/subtle-encoding/0.3.7")]
1919

2020
#[cfg(all(feature = "alloc", not(feature = "std")))]
2121
#[allow(unused_imports)] // rustc bug?

0 commit comments

Comments
 (0)