Skip to content

Commit ab24fe1

Browse files
committed
Release cipher v0.3-based versions
Releases new versions of all crates in this repository which incorporate the `cipher` v0.3 release changes (RustCrypto/traits#621)
1 parent c211b13 commit ab24fe1

14 files changed

Lines changed: 74 additions & 22 deletions

File tree

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cfb-mode/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ 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 (2021-04-29)
9+
### Changed
10+
- Bump `cipher` crate dependency to v0.3 release ([#226])
11+
- Bump `aes` dev dependency to v0.7 release ([#232])
12+
13+
[#226]: https://github.com/RustCrypto/stream-ciphers/pull/226
14+
[#232]: https://github.com/RustCrypto/stream-ciphers/pull/232
15+
816
## 0.6.0 (2020-10-16)
917
### Changed
1018
- Replace `block-cipher`/`stream-cipher` with `cipher` crate ([#177])

cfb-mode/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cfb-mode"
3-
version = "0.7.0-pre"
3+
version = "0.7.0"
44
description = "Generic Cipher Feedback (CFB) mode implementation."
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"

cfb8/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ 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 (2021-04-29)
9+
### Changed
10+
- Bump `cipher` crate dependency to v0.3 release ([#226])
11+
- Bump `aes` dev dependency to v0.7 release ([#232])
12+
13+
[#226]: https://github.com/RustCrypto/stream-ciphers/pull/226
14+
[#232]: https://github.com/RustCrypto/stream-ciphers/pull/232
15+
816
## 0.6.0 (2020-10-16)
917
### Changed
1018
- Replace `block-cipher`/`stream-cipher` with `cipher` crate ([#177])

cfb8/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cfb8"
3-
version = "0.7.0-pre"
3+
version = "0.7.0"
44
description = "Generic 8-bit Cipher Feedback (CFB8) mode implementation."
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"

hc-256/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ 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.4.0 (2021-04-29)
9+
### Changed
10+
- Bump `cipher` crate dependency to v0.3 release ([#226])
11+
12+
### Fixed
13+
- Avoid pulling in `alloc` feature of `zeroize` ([#190])
14+
15+
[#190]: https://github.com/RustCrypto/stream-ciphers/pull/190
16+
[#226]: https://github.com/RustCrypto/stream-ciphers/pull/226
17+
818
## 0.3.0 (2020-10-16)
919
### Changed
1020
- Replace `block-cipher`/`stream-cipher` with `cipher` crate ([#177])

hc-256/CHANGES.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

hc-256/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hc-256"
3-
version = "0.4.0-pre"
3+
version = "0.4.0"
44
authors = ["Eric McCorkle <eric@metricspace.net>"]
55
license = "MIT OR Apache-2.0"
66
description = "HC-256 Stream Cipher"

ofb/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ 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.5.0 (2021-04-29)
9+
### Changed
10+
- Bump `cipher` crate dependency to v0.3 release ([#226])
11+
- Bump `aes` dev dependency to v0.7 release ([#232])
12+
13+
[#226]: https://github.com/RustCrypto/stream-ciphers/pull/226
14+
[#232]: https://github.com/RustCrypto/stream-ciphers/pull/232
15+
816
## 0.4.0 (2020-10-16)
917
### Changed
1018
- Replace `block-cipher`/`stream-cipher` with `cipher` crate ([#177])

ofb/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ofb"
3-
version = "0.5.0-pre"
3+
version = "0.5.0"
44
authors = ["RustCrypto Developers"]
55
license = "MIT OR Apache-2.0"
66
description = "Generic Output Feedback (OFB) mode implementation."

0 commit comments

Comments
 (0)