Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release cipher v0.3-based versions #239

Merged
merged 1 commit into from
Apr 29, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
26 changes: 13 additions & 13 deletions Cargo.lock

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

6 changes: 5 additions & 1 deletion block-modes/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ 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).

## [Unreleased]
## 0.8.0 (2021-04-29)
### Added
- `IvState` trait ([#227])

### Changed
- Upgrade to `cipher v0.3` ([#202])

Expand All @@ -14,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

[#202]: https://github.com/RustCrypto/block-ciphers/pull/202
[#211]: https://github.com/RustCrypto/block-ciphers/pull/211
[#227]: https://github.com/RustCrypto/block-ciphers/pull/227

## 0.7.0 (2020-10-16)
### Changed
Expand Down
2 changes: 1 addition & 1 deletion block-modes/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "block-modes"
version = "0.8.0-pre"
version = "0.8.0"
description = "Block cipher modes of operation"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand Down
6 changes: 6 additions & 0 deletions blowfish/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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 (2021-04-29)
### Changed
- Bump `cipher` dependency to v0.3 release ([#235])

[#235]: https://github.com/RustCrypto/block-ciphers/pull/235

## 0.7.0 (2020-10-16)
### Changed
- Replace `block-cipher`/`stream-cipher` with `cipher` crate ([#167])
Expand Down
2 changes: 1 addition & 1 deletion blowfish/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "blowfish"
version = "0.8.0-pre"
version = "0.8.0"
description = "Blowfish block cipher"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand Down
6 changes: 6 additions & 0 deletions cast5/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.10.0 (2021-04-29)
### Changed
- Bump `cipher` dependency to v0.3 release ([#235])

[#235]: https://github.com/RustCrypto/block-ciphers/pull/235

## 0.9.0 (2020-10-16)
### Changed
- Replace `block-cipher`/`stream-cipher` with `cipher` crate ([#167])
Expand Down
2 changes: 1 addition & 1 deletion cast5/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cast5"
version = "0.10.0-pre"
version = "0.10.0"
description = "CAST5 block cipher"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand Down
6 changes: 6 additions & 0 deletions des/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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 (2021-04-29)
### Changed
- Bump `cipher` dependency to v0.3 release ([#235])

[#235]: https://github.com/RustCrypto/block-ciphers/pull/235

## 0.6.0 (2020-10-16)
### Changed
- Replace `block-cipher`/`stream-cipher` with `cipher` crate ([#167])
Expand Down
2 changes: 1 addition & 1 deletion des/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "des"
version = "0.7.0-pre"
version = "0.7.0"
description = "DES and Triple DES (3DES, TDES) block ciphers implementation"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand Down
6 changes: 6 additions & 0 deletions gost-modes/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.5.0 (2021-04-29)
### Changed
- Bump `cipher` dependency to v0.3 release ([#235])

[#235]: https://github.com/RustCrypto/block-ciphers/pull/235

## 0.4.0 (2020-10-16)
### Changed
- Replace `block-cipher`/`stream-cipher` with `cipher` crate ([#167])
Expand Down
8 changes: 4 additions & 4 deletions gost-modes/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gost-modes"
version = "0.5.0-pre"
version = "0.5.0"
description = "Block cipher modes of operation"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand All @@ -11,13 +11,13 @@ repository = "https://github.com/RustCrypto/block-ciphers"
keywords = ["crypto", "block-cipher", "ciphers"]

[dependencies]
block-modes = { version = "=0.8.0-pre", path = "../block-modes", default-features = false }
block-modes = { version = "0.8", path = "../block-modes", default-features = false }
cipher = { version = "0.3", default-features = false }
generic-array = "0.14"

[dev-dependencies]
kuznyechik = { version = "=0.7.0-pre", path = "../kuznyechik" }
magma = { version = "=0.7.0-pre", path = "../magma" }
kuznyechik = { version = "0.7", path = "../kuznyechik" }
magma = { version = "0.7", path = "../magma" }
cipher = { version = "0.3", features = ["dev"] }
hex-literal = "0.2"

Expand Down
6 changes: 6 additions & 0 deletions idea/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.4.0 (2021-04-29)
### Changed
- Bump `cipher` dependency to v0.3 release ([#235])

[#235]: https://github.com/RustCrypto/block-ciphers/pull/235

## 0.3.0 (2020-10-16)
### Changed
- Replace `block-cipher`/`stream-cipher` with `cipher` crate ([#167])
Expand Down
2 changes: 1 addition & 1 deletion idea/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "idea"
version = "0.4.0-pre"
version = "0.4.0"
description = "IDEA block cipher"
authors = ["RustCrypto Developers"]
license = "Apache-2.0 AND MIT"
Expand Down
6 changes: 6 additions & 0 deletions kuznyechik/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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 (2021-04-29)
### Changed
- Bump `cipher` dependency to v0.3 release ([#235])

[#235]: https://github.com/RustCrypto/block-ciphers/pull/235

## 0.6.0 (2020-10-16)
### Changed
- Replace `block-cipher`/`stream-cipher` with `cipher` crate ([#167])
Expand Down
2 changes: 1 addition & 1 deletion kuznyechik/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kuznyechik"
version = "0.7.0-pre"
version = "0.7.0"
description = "Kuznyechik (GOST R 34.12-2015) block cipher"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand Down
6 changes: 6 additions & 0 deletions magma/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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 (2021-04-29)
### Changed
- Bump `cipher` dependency to v0.3 release ([#235])

[#235]: https://github.com/RustCrypto/block-ciphers/pull/235

## 0.6.0 (2020-10-16)
### Changed
- Replace `block-cipher`/`stream-cipher` with `cipher` crate ([#167])
Expand Down
2 changes: 1 addition & 1 deletion magma/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "magma"
version = "0.7.0-pre"
version = "0.7.0"
description = "Magma (GOST 28147-89 and GOST R 34.12-2015) block cipher"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand Down
6 changes: 6 additions & 0 deletions rc2/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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 (2021-04-29)
### Changed
- Bump `cipher` dependency to v0.3 release ([#235])

[#235]: https://github.com/RustCrypto/block-ciphers/pull/235

## 0.6.0 (2020-10-16)
### Changed
- Replace `block-cipher`/`stream-cipher` with `cipher` crate ([#167])
Expand Down
2 changes: 1 addition & 1 deletion rc2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rc2"
version = "0.7.0-pre"
version = "0.7.0"
description = "RC2 block cipher"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand Down
6 changes: 6 additions & 0 deletions serpent/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.4.0 (2021-04-29)
### Changed
- Bump `cipher` dependency to v0.3 release ([#235])

[#235]: https://github.com/RustCrypto/block-ciphers/pull/235

## 0.3.0 (2020-10-16)
### Changed
- Replace `block-cipher`/`stream-cipher` with `cipher` crate ([#167])
Expand Down
2 changes: 1 addition & 1 deletion serpent/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "serpent"
version = "0.4.0-pre"
version = "0.4.0"
description = "Serpent block cipher"
authors = ["RustCrypto Developers"]
license = "Apache-2.0 OR MIT"
Expand Down
6 changes: 6 additions & 0 deletions sm4/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.4.0 (2021-04-29)
### Changed
- Bump `cipher` dependency to v0.3 release ([#235])

[#235]: https://github.com/RustCrypto/block-ciphers/pull/235

## 0.3.0 (2020-10-16)
### Changed
- Replace `block-cipher`/`stream-cipher` with `cipher` crate ([#167])
Expand Down
2 changes: 1 addition & 1 deletion sm4/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sm4"
version = "0.4.0-pre"
version = "0.4.0"
authors = ["andelf <andelf@gmail.com>"]
license = "Apache-2.0 OR MIT"
description = "SM4 block cipher algorithm"
Expand Down
6 changes: 6 additions & 0 deletions threefish/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.4.0 (2021-04-29)
### Changed
- Bump `cipher` dependency to v0.3 release ([#235])

[#235]: https://github.com/RustCrypto/block-ciphers/pull/235

## 0.3.0 (2020-10-16)
### Changed
- Replace `block-cipher`/`stream-cipher` with `cipher` crate ([#167])
Expand Down
2 changes: 1 addition & 1 deletion threefish/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "threefish"
version = "0.4.0-pre"
version = "0.4.0"
authors = ["The Rust-Crypto Project Developers"]
license = "MIT OR Apache-2.0"
description = "Threefish block cipher"
Expand Down