File tree 4 files changed +23
-3
lines changed
4 files changed +23
-3
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8
8
## 0.7.0 (2020-06-04)
9
9
### Changed
10
10
- 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 ] )
12
12
- Update to Rust 2018 edition ([ #107 ] )
13
13
- Bump ` generic-array ` dependency to v0.14 ([ #95 ] )
14
14
Original file line number Diff line number Diff line change @@ -5,6 +5,26 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
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
+
8
28
## 0.7.0 (2018-10-01)
9
29
10
30
## 0.6.2 (2018-06-21)
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " crypto-mac"
3
3
description = " Trait for Message Authentication Code (MAC) algorithms"
4
- version = " 0.8.0-pre "
4
+ version = " 0.8.0"
5
5
authors = [" RustCrypto Developers" ]
6
6
license = " MIT OR Apache-2.0"
7
7
readme = " README.md"
You can’t perform that action at this time.
0 commit comments