Skip to content

Commit 9ed27b2

Browse files
authored
Merge pull request #169 from RustCrypto/crypto-mac/v0.8.0
crypto-mac v0.8.0
2 parents ff85d61 + 5014754 commit 9ed27b2

File tree

4 files changed

+23
-3
lines changed

4 files changed

+23
-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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
## 0.7.0 (2020-06-04)
99
### Changed
1010
- Crate renamed from `block-cipher-trait` to `block-cipher` ([#139])
11-
- Split `BlockCipher` initialization into `NewBlockCipher` trait ([#132])
11+
- Split `BlockCipher` initialization into `NewBlockCipher` trait ([#132])
1212
- Update to Rust 2018 edition ([#107])
1313
- Bump `generic-array` dependency to v0.14 ([#95])
1414

crypto-mac/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,26 @@ 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.8.0 (2020-06-04)
9+
### Added
10+
- `impl_write!` macro ([#134])
11+
12+
### Changed
13+
- Bump `generic-array` dependency to v0.14 ([#144])
14+
- Split `Mac` initialization into `NewMac` trait ([#133])
15+
- Rename `MacResult` => `Output`, `code` => `into_bytes` ([#114])
16+
- Rename `Input::input` to `Update::update` ([#111])
17+
- Update to 2018 edition ([#108])
18+
- Bump `subtle` dependency from v1.0 to v2.0 ([#33])
19+
20+
[#144]: https://github.com/RustCrypto/traits/pull/95
21+
[#134]: https://github.com/RustCrypto/traits/pull/134
22+
[#133]: https://github.com/RustCrypto/traits/pull/133
23+
[#114]: https://github.com/RustCrypto/traits/pull/114
24+
[#111]: https://github.com/RustCrypto/traits/pull/111
25+
[#108]: https://github.com/RustCrypto/traits/pull/108
26+
[#33]: https://github.com/RustCrypto/traits/pull/33
27+
828
## 0.7.0 (2018-10-01)
929

1030
## 0.6.2 (2018-06-21)

crypto-mac/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "crypto-mac"
33
description = "Trait for Message Authentication Code (MAC) algorithms"
4-
version = "0.8.0-pre"
4+
version = "0.8.0"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"
77
readme = "README.md"

0 commit comments

Comments
 (0)