Skip to content

Commit

Permalink
Merge pull request RustCrypto#168 from RustCrypto/block-cipher/v0.7.0
Browse files Browse the repository at this point in the history
block-cipher v0.7.0
  • Loading branch information
tarcieri committed Jun 4, 2020
2 parents 7f2b98d + 88c2303 commit ff85d61
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions block-cipher/CHANGELOG.md
Expand Up @@ -5,6 +5,18 @@ 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-06-04)
### Changed
- Crate renamed from `block-cipher-trait` to `block-cipher` ([#139])
- Split `BlockCipher` initialization into `NewBlockCipher` trait ([#132])
- Update to Rust 2018 edition ([#107])
- Bump `generic-array` dependency to v0.14 ([#95])

[#139]: https://github.com/RustCrypto/traits/issues/139
[#132]: https://github.com/RustCrypto/traits/issues/132
[#107]: https://github.com/RustCrypto/traits/issues/107
[#95]: https://github.com/RustCrypto/traits/pull/95

## 0.6.2 (2018-11-14)

## 0.6.1 (2018-10-04)
Expand Down
2 changes: 1 addition & 1 deletion block-cipher/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "block-cipher"
description = "Traits for description of block ciphers"
version = "0.7.0-pre"
version = "0.7.0"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion stream-cipher/Cargo.toml
Expand Up @@ -16,7 +16,7 @@ generic-array = "0.14"
blobby = { version = "0.1", optional = true }

[dependencies.block-cipher]
version = "= 0.7.0-pre"
version = "0.7"
optional = true
path = "../block-cipher"

Expand Down

0 comments on commit ff85d61

Please sign in to comment.