Skip to content
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

subtle-encoding v0.3.3 #164

Merged
merged 1 commit into from
Mar 12, 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.3] (2019-03-12)

- Return errors for undersize decode buffers and trailing whitespace ([#163])

## [0.3.2] (2018-12-25)

- Fix `#![no_std]` support ([#158])
Expand Down Expand Up @@ -35,6 +39,8 @@

- Initial release

[0.3.3]: https://github.com/iqlusioninc/crates/pull/164
[#163]: https://github.com/iqlusioninc/crates/pull/163
[0.3.2]: https://github.com/iqlusioninc/crates/pull/160
[#158]: https://github.com/iqlusioninc/crates/pull/158
[0.3.1]: https://github.com/iqlusioninc/crates/pull/155
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.2" # Also update html_root_url in lib.rs when bumping this
version = "0.3.3" # Also update html_root_url in lib.rs when bumping this
authors = ["Tony Arcieri <tony@iqlusion.io>"]
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 @@ -16,7 +16,7 @@
#![cfg_attr(all(feature = "nightly", not(feature = "std")), feature(alloc))]
#![deny(warnings, missing_docs, unused_import_braces, unused_qualifications)]
#![forbid(unsafe_code)]
#![doc(html_root_url = "https://docs.rs/subtle-encoding/0.3.2")]
#![doc(html_root_url = "https://docs.rs/subtle-encoding/0.3.3")]

#[cfg(any(feature = "std", test))]
#[macro_use]
Expand Down