Skip to content

Commit 7335fef

Browse files
committed
aes: bump version to v0.7.0-pre; update README.md table
Bumps the `aes` crate version to indicate we'll be making breaking changes before the next release (i.e. `cipher` crate upgrade). Also removes the `aesni` and `aes-soft` crates from the README.md table now that they've been unified into the `aes` crate (#200)
1 parent cd5a34f commit 7335fef

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ cryptographic and security reviews.
1616
## Supported algorithms
1717
| Name | Crate name | crates.io | Docs | Build Status |
1818
|------|------------|-----------|------|--------------|
19-
| [AES](https://en.wikipedia.org/wiki/Advanced_Encryption_Standard) (Rijndael) | `aes` <br/><br/> `aesni` <br/><br/> `aes-soft` | [![crates.io](https://img.shields.io/crates/v/aes.svg)](https://crates.io/crates/aes) <br/><br/> [![crates.io](https://img.shields.io/crates/v/aesni.svg)](https://crates.io/crates/aesni) <br/><br/> [![crates.io](https://img.shields.io/crates/v/aes-soft.svg)](https://crates.io/crates/aes-soft) | [![Documentation](https://docs.rs/aes/badge.svg)](https://docs.rs/aes) <br/><br/> [![Documentation](https://docs.rs/aesni/badge.svg)](https://docs.rs/aesni) <br/><br/> [![Documentation](https://docs.rs/aes-soft/badge.svg)](https://docs.rs/aes-soft) | [![aes build](https://github.com/RustCrypto/block-ciphers/workflows/aes/badge.svg?branch=master&event=push)](https://github.com/RustCrypto/block-ciphers/actions?query=workflow:aes+branch:master) <br/><br/> [![aesni build](https://github.com/RustCrypto/block-ciphers/workflows/aesni/badge.svg?branch=master&event=push)](https://github.com/RustCrypto/block-ciphers/actions?query=workflow:aesni+branch:master) <br/><br/> [![aes-soft build](https://github.com/RustCrypto/block-ciphers/workflows/aes-soft/badge.svg)](https://github.com/RustCrypto/block-ciphers/actions?query=workflow:aes-soft+branch:master)
19+
| [AES](https://en.wikipedia.org/wiki/Advanced_Encryption_Standard) (Rijndael) | `aes` | [![crates.io](https://img.shields.io/crates/v/aes.svg)](https://crates.io/crates/aes) | [![Documentation](https://docs.rs/aes/badge.svg)](https://docs.rs/aes) | [![aes build](https://github.com/RustCrypto/block-ciphers/workflows/aes/badge.svg?branch=master&event=push)](https://github.com/RustCrypto/block-ciphers/actions?query=workflow:aes+branch:master)
2020
| [Blowfish](https://en.wikipedia.org/wiki/Blowfish_(cipher)) | `blowfish` | [![crates.io](https://img.shields.io/crates/v/blowfish.svg)](https://crates.io/crates/blowfish) | [![Documentation](https://docs.rs/blowfish/badge.svg)](https://docs.rs/blowfish) | [![build](https://github.com/RustCrypto/block-ciphers/workflows/blowfish/badge.svg?branch=master&event=push)](https://github.com/RustCrypto/block-ciphers/actions?query=workflow:blowfish+branch:master)
2121
| [CAST5](https://en.wikipedia.org/wiki/CAST-128) (CAST-128) | `cast5` | [![crates.io](https://img.shields.io/crates/v/cast5.svg)](https://crates.io/crates/cast5) | [![Documentation](https://docs.rs/cast5/badge.svg)](https://docs.rs/cast5) | [![build](https://github.com/RustCrypto/block-ciphers/workflows/cast5/badge.svg?branch=master&event=push)](https://github.com/RustCrypto/block-ciphers/actions?query=workflow:cast5+branch:master)
2222
| [DES](https://en.wikipedia.org/wiki/Data_Encryption_Standard) + [3DES](https://en.wikipedia.org/wiki/Triple_DES) (DEA, 3DEA) | `des` | [![crates.io](https://img.shields.io/crates/v/des.svg)](https://crates.io/crates/des) | [![Documentation](https://docs.rs/des/badge.svg)](https://docs.rs/des) | [![build](https://github.com/RustCrypto/block-ciphers/workflows/des/badge.svg?branch=master&event=push)](https://github.com/RustCrypto/block-ciphers/actions?query=workflow:des+branch:master)

aes/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aes"
3-
version = "0.6.0"
3+
version = "0.7.0-pre"
44
description = """
55
Pure Rust implementation of the Advanced Encryption Standard (a.k.a. Rijndael)
66
including support for AES in counter mode (a.k.a. AES-CTR)

0 commit comments

Comments
 (0)