Skip to content

Commit cb77062

Browse files
authored
Release new versions (#168)
Releases new versions of all crates in this repository which incorporate the migration to the new `cipher` crate (#167).
1 parent 1fdb35a commit cb77062

33 files changed

+136
-38
lines changed

Cargo.lock

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aes/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.6.0 (2020-10-16)
9+
### Changed
10+
- Replace `block-cipher`/`stream-cipher` with `cipher` crate ([#167])
11+
12+
[#167]: https://github.com/RustCrypto/block-ciphers/pull/167
13+
814
## 0.5.1 (2020-08-25)
915
### Changed
1016
- Bump `aesni` dependency to v0.9 ([#158])

aes/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aes"
3-
version = "0.6.0-pre"
3+
version = "0.6.0"
44
description = "Facade for AES (Rijndael) block ciphers implementations"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"
@@ -15,10 +15,10 @@ categories = ["cryptography", "no-std"]
1515
cipher = "0.2"
1616

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

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

2323
[dev-dependencies]
2424
cipher = { version = "0.2", features = ["dev"] }

aes/aes-soft/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.6.0 (2020-10-16)
9+
### Changed
10+
- Replace `block-cipher`/`stream-cipher` with `cipher` crate ([#167])
11+
- Performance improvements ([#166])
12+
13+
[#167]: https://github.com/RustCrypto/block-ciphers/pull/167
14+
[#166]: https://github.com/RustCrypto/block-ciphers/pull/166
15+
816
## 0.5.0 (2020-08-07)
917
### Changed
1018
- Bump `block-cipher` dependency to v0.8 ([#138])

aes/aes-soft/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-soft"
3-
version = "0.6.0-pre"
3+
version = "0.6.0"
44
description = "AES (Rijndael) block ciphers bit-sliced implementation"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"

aes/aesni/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.10.0 (2020-10-16)
9+
### Changed
10+
- Replace `block-cipher`/`stream-cipher` with `cipher` crate ([#167])
11+
12+
[#167]: https://github.com/RustCrypto/block-ciphers/pull/167
13+
814
## 0.9.0 (2020-08-25)
915
### Changed
1016
- Bump `stream-cipher` dependency to v0.7 ([#158])

aes/aesni/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aesni"
3-
version = "0.10.0-pre"
3+
version = "0.10.0"
44
description = "AES (Rijndael) block ciphers implementation using AES-NI"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"

block-modes/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.7.0 (2020-10-16)
9+
### Changed
10+
- Replace `block-cipher`/`stream-cipher` with `cipher` crate ([#167])
11+
12+
[#167]: https://github.com/RustCrypto/block-ciphers/pull/167
13+
814
## 0.6.1 (2020-08-14)
915
### Added
1016
- `Clone` trait implementations ([#145])

block-modes/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "block-modes"
3-
version = "0.7.0-pre"
3+
version = "0.7.0"
44
description = "Block cipher modes of operation"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"
@@ -15,7 +15,7 @@ block-padding = "0.2"
1515
cipher = "0.2"
1616

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

2121
[features]

blowfish/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.7.0 (2020-10-16)
9+
### Changed
10+
- Replace `block-cipher`/`stream-cipher` with `cipher` crate ([#167])
11+
12+
[#167]: https://github.com/RustCrypto/block-ciphers/pull/167
13+
814
## 0.6.0 (2020-08-07)
915
### Changed
1016
- Bump `block-cipher` dependency to v0.8 ([#138])

blowfish/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "blowfish"
3-
version = "0.7.0-pre"
3+
version = "0.7.0"
44
description = "Blowfish block cipher"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"

cast5/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.9.0 (2020-10-16)
9+
### Changed
10+
- Replace `block-cipher`/`stream-cipher` with `cipher` crate ([#167])
11+
12+
[#167]: https://github.com/RustCrypto/block-ciphers/pull/167
13+
814
## 0.8.0 (2020-08-07)
915
### Changed
1016
- Bump `block-cipher` dependency to v0.8 ([#138])

cast5/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cast5"
3-
version = "0.9.0-pre"
3+
version = "0.9.0"
44
description = "CAST5 block cipher"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"

des/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.6.0 (2020-10-16)
9+
### Changed
10+
- Replace `block-cipher`/`stream-cipher` with `cipher` crate ([#167])
11+
12+
[#167]: https://github.com/RustCrypto/block-ciphers/pull/167
13+
814
## 0.5.0 (2020-08-07)
915
### Changed
1016
- Bump `block-cipher` dependency to v0.8 ([#138])

des/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "des"
3-
version = "0.6.0-pre"
3+
version = "0.6.0"
44
description = "DES and Triple DES (3DES, TDES) block ciphers implementation"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"

gost-modes/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.4.0 (2020-10-16)
9+
### Changed
10+
- Replace `block-cipher`/`stream-cipher` with `cipher` crate ([#167])
11+
12+
[#167]: https://github.com/RustCrypto/block-ciphers/pull/167
13+
814
## 0.3.0 (2020-08-12)
915
### Changed
1016
- Bump `stream-cipher` dependency to v0.7 ([#158])

gost-modes/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gost-modes"
3-
version = "0.4.0-pre"
3+
version = "0.4.0"
44
description = "Block cipher modes of operation"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"
@@ -11,13 +11,13 @@ repository = "https://github.com/RustCrypto/block-ciphers"
1111
keywords = ["crypto", "block-cipher", "ciphers"]
1212

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

1818
[dev-dependencies]
19-
kuznyechik = { version = "0.6.0-pre", path = "../kuznyechik" }
20-
magma = { version = "0.6.0-pre", path = "../magma" }
19+
kuznyechik = { version = "0.6", path = "../kuznyechik" }
20+
magma = { version = "0.6", path = "../magma" }
2121
cipher = { version = "0.2", features = ["dev"] }
2222
hex-literal = "0.2"
2323

idea/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.3.0 (2020-10-16)
9+
### Changed
10+
- Replace `block-cipher`/`stream-cipher` with `cipher` crate ([#167])
11+
12+
[#167]: https://github.com/RustCrypto/block-ciphers/pull/167
13+
814
## 0.2.0 (2020-08-07)
915
### Changed
1016
- Bump `block-cipher` dependency to v0.8 ([#138])

idea/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "idea"
3-
version = "0.3.0-pre"
3+
version = "0.3.0"
44
description = "IDEA block cipher"
55
authors = ["RustCrypto Developers"]
66
license = "Apache-2.0 AND MIT"

kuznyechik/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.6.0 (2020-10-16)
9+
### Changed
10+
- Replace `block-cipher`/`stream-cipher` with `cipher` crate ([#167])
11+
12+
[#167]: https://github.com/RustCrypto/block-ciphers/pull/167
13+
814
## 0.5.0 (2020-08-07)
915
### Changed
1016
- Bump `block-cipher` dependency to v0.8 ([#138])

kuznyechik/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kuznyechik"
3-
version = "0.6.0-pre"
3+
version = "0.6.0"
44
description = "Kuznyechik (GOST R 34.12-2015) block cipher"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)