Skip to content

Commit

Permalink
Bump hybrid-array to v0.2.0-rc.10 (#1116)
Browse files Browse the repository at this point in the history
This PR also bumps MSRV to 1.81 for `block-buffer`, `block-padding`, `dbl`,
and `inout`, following the MSRV bump in `hybrid-array`.
  • Loading branch information
newpavlov authored Sep 27, 2024
1 parent 703e54a commit b5d80a2
Show file tree
Hide file tree
Showing 13 changed files with 59 additions and 31 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/block-buffer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
strategy:
matrix:
rust:
- 1.65.0 # MSRV
- 1.81.0 # MSRV
- stable
target:
- thumbv7em-none-eabi
Expand All @@ -50,7 +50,7 @@ jobs:
strategy:
matrix:
rust:
- 1.65.0 # MSRV
- 1.81.0 # MSRV
- stable
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/block-padding.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
strategy:
matrix:
rust:
- 1.65.0 # MSRV
- 1.81.0 # MSRV
- stable
target:
- thumbv7em-none-eabi
Expand All @@ -49,7 +49,7 @@ jobs:
strategy:
matrix:
rust:
- 1.65.0 # MSRV
- 1.81.0 # MSRV
- stable
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dbl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
strategy:
matrix:
rust:
- 1.65.0 # MSRV
- 1.81.0 # MSRV
- stable
target:
- thumbv7em-none-eabi
Expand All @@ -49,7 +49,7 @@ jobs:
strategy:
matrix:
rust:
- 1.65.0 # MSRV
- 1.81.0 # MSRV
- stable
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/inout.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
strategy:
matrix:
rust:
- 1.65.0 # MSRV
- 1.81.0 # MSRV
- stable
target:
- thumbv7em-none-eabi
Expand All @@ -50,7 +50,7 @@ jobs:
strategy:
matrix:
rust:
- 1.65.0 # MSRV
- 1.81.0 # MSRV
- stable
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workspace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- uses: RustCrypto/actions/cargo-cache@master
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.72.0 # Pinned to prevent breakages
toolchain: 1.81.0 # Pinned to prevent breakages
components: clippy
- run: cargo clippy --all --all-features --exclude aarch64-dit -- -D warnings

Expand Down
28 changes: 14 additions & 14 deletions 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-buffer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ keywords = ["block", "buffer"]
categories = ["cryptography", "no-std"]
edition = "2021"
readme = "README.md"
rust-version = "1.65"
rust-version = "1.81"

[dependencies]
crypto-common = "0.2.0-rc.1"
Expand Down
8 changes: 8 additions & 0 deletions block-padding/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ 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
### Changed
- Migrated from `generic-array` to `hybrid-array` ([#944])
- MSRV is bumped to 1.81 ([#1116])

[#944]: https://github.com/RustCrypto/utils/pull/944
[#1116]: https://github.com/RustCrypto/utils/pull/1116

## 0.3.3 (2023-04-02)
### Added
- `RawPadding` trait for padding blocks of arbitrary size ([#870])
Expand Down
4 changes: 2 additions & 2 deletions block-padding/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ description = "Padding and unpadding of messages divided into blocks."
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.65"
rust-version = "1.81"
documentation = "https://docs.rs/block-padding"
repository = "https://github.com/RustCrypto/utils"
keywords = ["padding", "pkcs7", "ansix923", "iso7816"]
categories = ["cryptography", "no-std"]
readme = "README.md"

[dependencies]
hybrid-array = "0.2.0-rc.9"
hybrid-array = "0.2.0-rc.10"

[features]
std = []
Expand Down
13 changes: 13 additions & 0 deletions dbl/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Changelog
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
### Changed
- Migrated from `generic-array` to `hybrid-array` ([#944])
- MSRV is bumped to 1.81 ([#1116])

[#944]: https://github.com/RustCrypto/utils/pull/944
[#1116]: https://github.com/RustCrypto/utils/pull/1116
5 changes: 2 additions & 3 deletions dbl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@ documentation = "https://docs.rs/dbl"
repository = "https://github.com/RustCrypto/utils"
keywords = ["crypto", "dbl", "gf", "galois"]
edition = "2021"
rust-version = "1.65"
rust-version = "1.81"
readme = "README.md"

[dependencies]
hybrid-array = "0.2.0-rc.9"

hybrid-array = "0.2.0-rc.10"
8 changes: 8 additions & 0 deletions inout/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ 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
### Changed
- Migrated from `generic-array` to `hybrid-array` ([#944])
- MSRV is bumped to 1.81 ([#1116])

[#944]: https://github.com/RustCrypto/utils/pull/944
[#1116]: https://github.com/RustCrypto/utils/pull/1116

## 0.1.3 (2022-03-31)
### Fixed
- MIRI error in `From` impl for `InOutBuf` ([#755])
Expand Down
4 changes: 2 additions & 2 deletions inout/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ description = "Custom reference types for code generic over in-place and buffer-
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.56"
rust-version = "1.81"
documentation = "https://docs.rs/inout"
repository = "https://github.com/RustCrypto/utils"
keywords = ["custom-reference"]
readme = "README.md"

[dependencies]
block-padding = { version = "0.4.0-rc.0", path = "../block-padding", optional = true }
hybrid-array = "0.2.0-rc.9"
hybrid-array = "0.2.0-rc.10"

[features]
std = ["block-padding/std"]
Expand Down

0 comments on commit b5d80a2

Please sign in to comment.