Skip to content

Commit b5d80a2

Browse files
authored
Bump hybrid-array to v0.2.0-rc.10 (#1116)
This PR also bumps MSRV to 1.81 for `block-buffer`, `block-padding`, `dbl`, and `inout`, following the MSRV bump in `hybrid-array`.
1 parent 703e54a commit b5d80a2

File tree

13 files changed

+59
-31
lines changed

13 files changed

+59
-31
lines changed

.github/workflows/block-buffer.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
matrix:
2727
rust:
28-
- 1.65.0 # MSRV
28+
- 1.81.0 # MSRV
2929
- stable
3030
target:
3131
- thumbv7em-none-eabi
@@ -50,7 +50,7 @@ jobs:
5050
strategy:
5151
matrix:
5252
rust:
53-
- 1.65.0 # MSRV
53+
- 1.81.0 # MSRV
5454
- stable
5555
steps:
5656
- uses: actions/checkout@v4

.github/workflows/block-padding.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
matrix:
2727
rust:
28-
- 1.65.0 # MSRV
28+
- 1.81.0 # MSRV
2929
- stable
3030
target:
3131
- thumbv7em-none-eabi
@@ -49,7 +49,7 @@ jobs:
4949
strategy:
5050
matrix:
5151
rust:
52-
- 1.65.0 # MSRV
52+
- 1.81.0 # MSRV
5353
- stable
5454
steps:
5555
- uses: actions/checkout@v4

.github/workflows/dbl.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
matrix:
2727
rust:
28-
- 1.65.0 # MSRV
28+
- 1.81.0 # MSRV
2929
- stable
3030
target:
3131
- thumbv7em-none-eabi
@@ -49,7 +49,7 @@ jobs:
4949
strategy:
5050
matrix:
5151
rust:
52-
- 1.65.0 # MSRV
52+
- 1.81.0 # MSRV
5353
- stable
5454
steps:
5555
- uses: actions/checkout@v4

.github/workflows/inout.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
matrix:
2727
rust:
28-
- 1.65.0 # MSRV
28+
- 1.81.0 # MSRV
2929
- stable
3030
target:
3131
- thumbv7em-none-eabi
@@ -50,7 +50,7 @@ jobs:
5050
strategy:
5151
matrix:
5252
rust:
53-
- 1.65.0 # MSRV
53+
- 1.81.0 # MSRV
5454
- stable
5555
steps:
5656
- uses: actions/checkout@v4

.github/workflows/workspace.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: RustCrypto/actions/cargo-cache@master
2121
- uses: dtolnay/rust-toolchain@master
2222
with:
23-
toolchain: 1.72.0 # Pinned to prevent breakages
23+
toolchain: 1.81.0 # Pinned to prevent breakages
2424
components: clippy
2525
- run: cargo clippy --all --all-features --exclude aarch64-dit -- -D warnings
2626

Cargo.lock

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

block-buffer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ keywords = ["block", "buffer"]
1010
categories = ["cryptography", "no-std"]
1111
edition = "2021"
1212
readme = "README.md"
13-
rust-version = "1.65"
13+
rust-version = "1.81"
1414

1515
[dependencies]
1616
crypto-common = "0.2.0-rc.1"

block-padding/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## UNRELEASED
8+
### Changed
9+
- Migrated from `generic-array` to `hybrid-array` ([#944])
10+
- MSRV is bumped to 1.81 ([#1116])
11+
12+
[#944]: https://github.com/RustCrypto/utils/pull/944
13+
[#1116]: https://github.com/RustCrypto/utils/pull/1116
14+
715
## 0.3.3 (2023-04-02)
816
### Added
917
- `RawPadding` trait for padding blocks of arbitrary size ([#870])

block-padding/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ description = "Padding and unpadding of messages divided into blocks."
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"
77
edition = "2021"
8-
rust-version = "1.65"
8+
rust-version = "1.81"
99
documentation = "https://docs.rs/block-padding"
1010
repository = "https://github.com/RustCrypto/utils"
1111
keywords = ["padding", "pkcs7", "ansix923", "iso7816"]
1212
categories = ["cryptography", "no-std"]
1313
readme = "README.md"
1414

1515
[dependencies]
16-
hybrid-array = "0.2.0-rc.9"
16+
hybrid-array = "0.2.0-rc.10"
1717

1818
[features]
1919
std = []

dbl/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## UNRELEASED
8+
### Changed
9+
- Migrated from `generic-array` to `hybrid-array` ([#944])
10+
- MSRV is bumped to 1.81 ([#1116])
11+
12+
[#944]: https://github.com/RustCrypto/utils/pull/944
13+
[#1116]: https://github.com/RustCrypto/utils/pull/1116

0 commit comments

Comments
 (0)