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

Commit

Permalink
Merge pull request #40 from miscreant/v0.5.0
Browse files Browse the repository at this point in the history
v0.5.0
  • Loading branch information
tarcieri authored Dec 5, 2019
2 parents bcb4965 + 834f17c commit e73a2ef
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 20 deletions.
9 changes: 9 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [0.5.0] (2019-12-04)

- Use `aes-siv` crate ([#36], [#39])
- Remove `soft-aes` feature ([#33])

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

- Cargo.toml: Enable `soft-aes` feature in docs.rs metadata ([#16])
Expand Down Expand Up @@ -28,6 +33,10 @@

- Initial release

[0.5.0]: https://github.com/miscreant/miscreant.rs/pull/40
[#39]: https://github.com/miscreant/miscreant.rs/pull/39
[#36]: https://github.com/miscreant/miscreant.rs/pull/36
[#33]: https://github.com/miscreant/miscreant.rs/pull/33
[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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Symmetric encryption library providing misuse-resistant
authenticated encryption (MRAE) including AES-SIV (RFC 5297),
AES-PMAC-SIV, and the STREAM segmented encryption construction.
"""
version = "0.4.2" # Also update html_root_url in lib.rs when bumping this
version = "0.5.0" # 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
17 changes: 0 additions & 17 deletions appveyor.yml

This file was deleted.

4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//!
//! ## Minimum Supported Rust Version (MSRV)
//!
//! - Rust 1.36.0
//! - Rust **1.36.0**
//!
//! ### `x86`/`x86_64` targets with AES-NI support
//!
Expand All @@ -23,7 +23,7 @@
//! [AES-NI]: https://en.wikipedia.org/wiki/AES_instruction_set#x86_architecture_processors
#![no_std]
#![doc(html_root_url = "https://docs.rs/miscreant/0.4.2")]
#![doc(html_root_url = "https://docs.rs/miscreant/0.5.0")]
#![warn(
missing_docs,
trivial_casts,
Expand Down

0 comments on commit e73a2ef

Please sign in to comment.