Skip to content

Commit

Permalink
Release new versions
Browse files Browse the repository at this point in the history
Releases new versions of all crates in this repository which incorporate
the migration to the new `cipher` crate (#167).
  • Loading branch information
tarcieri committed Oct 16, 2020
1 parent 1fdb35a commit 41851ba
Show file tree
Hide file tree
Showing 33 changed files with 136 additions and 38 deletions.
32 changes: 16 additions & 16 deletions 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 aes/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.6.0 (2020-10-16)
### Changed
- Replace `block-cipher`/`stream-cipher` with `cipher` crate ([#167])

[#167]: https://github.com/RustCrypto/block-ciphers/pull/167

## 0.5.1 (2020-08-25)
### Changed
- Bump `aesni` dependency to v0.9 ([#158])
Expand Down
6 changes: 3 additions & 3 deletions aes/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aes"
version = "0.6.0-pre"
version = "0.6.0"
description = "Facade for AES (Rijndael) block ciphers implementations"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand All @@ -15,10 +15,10 @@ categories = ["cryptography", "no-std"]
cipher = "0.2"

[target.'cfg(not(all(target_feature="aes", target_feature = "sse2", any(target_arch = "x86_64", target_arch = "x86"))))'.dependencies]
aes-soft = { version = "=0.6.0-pre", path = "aes-soft" }
aes-soft = { version = "0.6", path = "aes-soft" }

[target.'cfg(all(target_feature="aes", target_feature = "sse2", any(target_arch = "x86_64", target_arch = "x86")))'.dependencies]
aesni = { version = "0.10.0-pre", default-features = false, path = "aesni" }
aesni = { version = "0.10", default-features = false, path = "aesni" }

[dev-dependencies]
cipher = { version = "0.2", features = ["dev"] }
8 changes: 8 additions & 0 deletions aes/aes-soft/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.6.0 (2020-10-16)
### Changed
- Replace `block-cipher`/`stream-cipher` with `cipher` crate ([#167])
- Performance improvements ([#166])

[#167]: https://github.com/RustCrypto/block-ciphers/pull/167
[#166]: https://github.com/RustCrypto/block-ciphers/pull/166

## 0.5.0 (2020-08-07)
### Changed
- Bump `block-cipher` dependency to v0.8 ([#138])
Expand Down
2 changes: 1 addition & 1 deletion aes/aes-soft/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aes-soft"
version = "0.6.0-pre"
version = "0.6.0"
description = "AES (Rijndael) block ciphers bit-sliced implementation"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand Down
6 changes: 6 additions & 0 deletions aes/aesni/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.10.0 (2020-10-16)
### Changed
- Replace `block-cipher`/`stream-cipher` with `cipher` crate ([#167])

[#167]: https://github.com/RustCrypto/block-ciphers/pull/167

## 0.9.0 (2020-08-25)
### Changed
- Bump `stream-cipher` dependency to v0.7 ([#158])
Expand Down
2 changes: 1 addition & 1 deletion aes/aesni/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aesni"
version = "0.10.0-pre"
version = "0.10.0"
description = "AES (Rijndael) block ciphers implementation using AES-NI"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand Down
6 changes: 6 additions & 0 deletions block-modes/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.7.0 (2020-10-16)
### Changed
- Replace `block-cipher`/`stream-cipher` with `cipher` crate ([#167])

[#167]: https://github.com/RustCrypto/block-ciphers/pull/167

## 0.6.1 (2020-08-14)
### Added
- `Clone` trait implementations ([#145])
Expand Down
4 changes: 2 additions & 2 deletions block-modes/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "block-modes"
version = "0.7.0-pre"
version = "0.7.0"
description = "Block cipher modes of operation"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand All @@ -15,7 +15,7 @@ block-padding = "0.2"
cipher = "0.2"

[dev-dependencies]
aes = { version = "=0.6.0-pre", path = "../aes" }
aes = { version = "0.6", path = "../aes" }
hex-literal = "0.2"

[features]
Expand Down
6 changes: 6 additions & 0 deletions blowfish/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.7.0 (2020-10-16)
### Changed
- Replace `block-cipher`/`stream-cipher` with `cipher` crate ([#167])

[#167]: https://github.com/RustCrypto/block-ciphers/pull/167

## 0.6.0 (2020-08-07)
### Changed
- Bump `block-cipher` dependency to v0.8 ([#138])
Expand Down
2 changes: 1 addition & 1 deletion blowfish/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "blowfish"
version = "0.7.0-pre"
version = "0.7.0"
description = "Blowfish block cipher"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand Down
6 changes: 6 additions & 0 deletions cast5/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.9.0 (2020-10-16)
### Changed
- Replace `block-cipher`/`stream-cipher` with `cipher` crate ([#167])

[#167]: https://github.com/RustCrypto/block-ciphers/pull/167

## 0.8.0 (2020-08-07)
### Changed
- Bump `block-cipher` dependency to v0.8 ([#138])
Expand Down
2 changes: 1 addition & 1 deletion cast5/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cast5"
version = "0.9.0-pre"
version = "0.9.0"
description = "CAST5 block cipher"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand Down
6 changes: 6 additions & 0 deletions des/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.6.0 (2020-10-16)
### Changed
- Replace `block-cipher`/`stream-cipher` with `cipher` crate ([#167])

[#167]: https://github.com/RustCrypto/block-ciphers/pull/167

## 0.5.0 (2020-08-07)
### Changed
- Bump `block-cipher` dependency to v0.8 ([#138])
Expand Down
2 changes: 1 addition & 1 deletion des/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "des"
version = "0.6.0-pre"
version = "0.6.0"
description = "DES and Triple DES (3DES, TDES) block ciphers implementation"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand Down
6 changes: 6 additions & 0 deletions gost-modes/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.4.0 (2020-10-16)
### Changed
- Replace `block-cipher`/`stream-cipher` with `cipher` crate ([#167])

[#167]: https://github.com/RustCrypto/block-ciphers/pull/167

## 0.3.0 (2020-08-12)
### Changed
- Bump `stream-cipher` dependency to v0.7 ([#158])
Expand Down
8 changes: 4 additions & 4 deletions gost-modes/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gost-modes"
version = "0.4.0-pre"
version = "0.4.0"
description = "Block cipher modes of operation"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand All @@ -11,13 +11,13 @@ repository = "https://github.com/RustCrypto/block-ciphers"
keywords = ["crypto", "block-cipher", "ciphers"]

[dependencies]
block-modes = { version = "=0.7.0-pre", path = "../block-modes", default-features = false }
block-modes = { version = "0.7", path = "../block-modes", default-features = false }
cipher = { version = "0.2", default-features = false }
generic-array = "0.14"

[dev-dependencies]
kuznyechik = { version = "0.6.0-pre", path = "../kuznyechik" }
magma = { version = "0.6.0-pre", path = "../magma" }
kuznyechik = { version = "0.6", path = "../kuznyechik" }
magma = { version = "0.6", path = "../magma" }
cipher = { version = "0.2", features = ["dev"] }
hex-literal = "0.2"

Expand Down
6 changes: 6 additions & 0 deletions idea/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.3.0 (2020-10-16)
### Changed
- Replace `block-cipher`/`stream-cipher` with `cipher` crate ([#167])

[#167]: https://github.com/RustCrypto/block-ciphers/pull/167

## 0.2.0 (2020-08-07)
### Changed
- Bump `block-cipher` dependency to v0.8 ([#138])
Expand Down
2 changes: 1 addition & 1 deletion idea/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "idea"
version = "0.3.0-pre"
version = "0.3.0"
description = "IDEA block cipher"
authors = ["RustCrypto Developers"]
license = "Apache-2.0 AND MIT"
Expand Down
6 changes: 6 additions & 0 deletions kuznyechik/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.6.0 (2020-10-16)
### Changed
- Replace `block-cipher`/`stream-cipher` with `cipher` crate ([#167])

[#167]: https://github.com/RustCrypto/block-ciphers/pull/167

## 0.5.0 (2020-08-07)
### Changed
- Bump `block-cipher` dependency to v0.8 ([#138])
Expand Down
2 changes: 1 addition & 1 deletion kuznyechik/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kuznyechik"
version = "0.6.0-pre"
version = "0.6.0"
description = "Kuznyechik (GOST R 34.12-2015) block cipher"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand Down
Loading

0 comments on commit 41851ba

Please sign in to comment.