Skip to content

Commit ff85d61

Browse files
authored
Merge pull request #168 from RustCrypto/block-cipher/v0.7.0
block-cipher v0.7.0
2 parents 7f2b98d + 88c2303 commit ff85d61

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

block-cipher/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ 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-06-04)
9+
### Changed
10+
- Crate renamed from `block-cipher-trait` to `block-cipher` ([#139])
11+
- Split `BlockCipher` initialization into `NewBlockCipher` trait ([#132])
12+
- Update to Rust 2018 edition ([#107])
13+
- Bump `generic-array` dependency to v0.14 ([#95])
14+
15+
[#139]: https://github.com/RustCrypto/traits/issues/139
16+
[#132]: https://github.com/RustCrypto/traits/issues/132
17+
[#107]: https://github.com/RustCrypto/traits/issues/107
18+
[#95]: https://github.com/RustCrypto/traits/pull/95
19+
820
## 0.6.2 (2018-11-14)
921

1022
## 0.6.1 (2018-10-04)

block-cipher/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "block-cipher"
33
description = "Traits for description of block ciphers"
4-
version = "0.7.0-pre"
4+
version = "0.7.0"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"
77
readme = "README.md"

stream-cipher/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ generic-array = "0.14"
1616
blobby = { version = "0.1", optional = true }
1717

1818
[dependencies.block-cipher]
19-
version = "= 0.7.0-pre"
19+
version = "0.7"
2020
optional = true
2121
path = "../block-cipher"
2222

0 commit comments

Comments
 (0)