Skip to content

Commit

Permalink
Merge pull request RustCrypto#169 from RustCrypto/crypto-mac/v0.8.0
Browse files Browse the repository at this point in the history
crypto-mac v0.8.0
  • Loading branch information
tarcieri committed Jun 4, 2020
2 parents ff85d61 + 5014754 commit 9ed27b2
Show file tree
Hide file tree
Showing 4 changed files with 23 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.

2 changes: 1 addition & 1 deletion block-cipher/CHANGELOG.md
Expand Up @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## 0.7.0 (2020-06-04)
### Changed
- Crate renamed from `block-cipher-trait` to `block-cipher` ([#139])
- Split `BlockCipher` initialization into `NewBlockCipher` trait ([#132])
- Split `BlockCipher` initialization into `NewBlockCipher` trait ([#132])
- Update to Rust 2018 edition ([#107])
- Bump `generic-array` dependency to v0.14 ([#95])

Expand Down
20 changes: 20 additions & 0 deletions crypto-mac/CHANGELOG.md
Expand Up @@ -5,6 +5,26 @@ 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.8.0 (2020-06-04)
### Added
- `impl_write!` macro ([#134])

### Changed
- Bump `generic-array` dependency to v0.14 ([#144])
- Split `Mac` initialization into `NewMac` trait ([#133])
- Rename `MacResult` => `Output`, `code` => `into_bytes` ([#114])
- Rename `Input::input` to `Update::update` ([#111])
- Update to 2018 edition ([#108])
- Bump `subtle` dependency from v1.0 to v2.0 ([#33])

[#144]: https://github.com/RustCrypto/traits/pull/95
[#134]: https://github.com/RustCrypto/traits/pull/134
[#133]: https://github.com/RustCrypto/traits/pull/133
[#114]: https://github.com/RustCrypto/traits/pull/114
[#111]: https://github.com/RustCrypto/traits/pull/111
[#108]: https://github.com/RustCrypto/traits/pull/108
[#33]: https://github.com/RustCrypto/traits/pull/33

## 0.7.0 (2018-10-01)

## 0.6.2 (2018-06-21)
Expand Down
2 changes: 1 addition & 1 deletion crypto-mac/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "crypto-mac"
description = "Trait for Message Authentication Code (MAC) algorithms"
version = "0.8.0-pre"
version = "0.8.0"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
readme = "README.md"
Expand Down

0 comments on commit 9ed27b2

Please sign in to comment.