Skip to content
This repository has been archived by the owner on Mar 1, 2021. It is now read-only.

Commit

Permalink
v0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri committed Jan 13, 2019
1 parent 34c0198 commit b045fd6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGES.md
@@ -1,3 +1,7 @@
## [0.4.2] (2019-01-12)

- Cargo.toml: Enable `soft-aes` feature in docs.rs metadata ([#16])

## [0.4.1] (2019-01-12)

- Cargo.toml: Fix docs.rs config, CI badge, and license string ([#13], [#14])
Expand All @@ -24,6 +28,8 @@

- Initial release

[0.4.2]: https://github.com/miscreant/miscreant.rs/pull/17
[#16]: https://github.com/miscreant/miscreant.rs/pull/16
[0.4.1]: https://github.com/miscreant/miscreant.rs/pull/15
[#14]: https://github.com/miscreant/miscreant.rs/pull/14
[#13]: https://github.com/miscreant/miscreant.rs/pull/13
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -5,7 +5,7 @@ description = """
authenticated encryption (MRAE) including AES-SIV (RFC 5297),
AES-PMAC-SIV, and the STREAM segmented encryption construction.
"""
version = "0.4.1" # Also update html_root_url in lib.rs when bumping this
version = "0.4.2" # Also update html_root_url in lib.rs when bumping this
license = "Apache-2.0 OR MIT"
authors = ["Tony Arcieri <bascule@gmail.com>"]
homepage = "https://miscreant.io"
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Expand Up @@ -25,6 +25,7 @@
//! ```

#![no_std]
#![cfg_attr(all(feature = "nightly", not(feature = "std")), feature(alloc))]
#![deny(
warnings,
missing_docs,
Expand All @@ -34,8 +35,7 @@
unused_import_braces,
unused_qualifications
)]
#![cfg_attr(all(feature = "nightly", not(feature = "std")), feature(alloc))]
#![doc(html_root_url = "https://docs.rs/miscreant/0.4.1")]
#![doc(html_root_url = "https://docs.rs/miscreant/0.4.2")]

#[cfg(not(any(
feature = "soft-aes",
Expand Down

0 comments on commit b045fd6

Please sign in to comment.