Skip to content

Commit 292d3b3

Browse files
committed
Bump getrandom to v0.4
Release PR: rust-random/getrandom#798
1 parent 78b7b56 commit 292d3b3

5 files changed

Lines changed: 29 additions & 25 deletions

File tree

Cargo.lock

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

crypto-common/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515
- `BlockUser::BlockSize` is now bounded by the `BlockSizes` trait
1616
- Edition changed to 2024 and MSRV bumped to 1.85 ([#1759])
1717
- Bump `rand_core` to v0.10 ([#2250])
18+
- Bump `getrandom` to v0.4 ([#2258])
1819

1920
### Removed
2021
- `generate_*` and `try_generate_*` methods from KeyInit and KeyIvInit traits.
@@ -24,6 +25,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2425
[#2096]: https://github.com/RustCrypto/traits/pull/2096
2526
[#2213]: https://github.com/RustCrypto/traits/pull/2213
2627
[#2250]: https://github.com/RustCrypto/traits/pull/2250
28+
[#2258]: https://github.com/RustCrypto/traits/pull/2258
2729

2830
## 0.1.7 (2025-11-12)
2931
### Changed

crypto-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ description = "Common cryptographic traits"
1616
hybrid-array = "0.4"
1717

1818
# optional dependencies
19-
getrandom = { version = "0.4.0-rc.1", optional = true, features = ["sys_rng"] }
19+
getrandom = { version = "0.4", optional = true, features = ["sys_rng"] }
2020
rand_core = { version = "0.10", optional = true }
2121

2222
[features]

password-hash/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
### Changed
1010
- Edition changed to 2024 and MSRV bumped to 1.85 ([#1759])
1111
- Bump `rand_core` to v0.10 ([#2250])
12+
- Bump `getrandom` to v0.4 ([#2258])
1213

1314
[#1759]: https://github.com/RustCrypto/traits/pull/1759
1415
[#2250]: https://github.com/RustCrypto/traits/pull/2250
16+
[#2258]: https://github.com/RustCrypto/traits/pull/2258
1517

1618
## 0.5.0 (2023-03-04)
1719
### Added

password-hash/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ formats (e.g. Modular Crypt Format)
1717
"""
1818

1919
[dependencies]
20-
getrandom = { version = "0.4.0-rc.1", optional = true, default-features = false }
20+
getrandom = { version = "0.4", optional = true, default-features = false }
2121
phc = { version = "0.6.0-rc.1", optional = true, default-features = false }
2222
rand_core = { version = "0.10", optional = true, default-features = false }
2323

0 commit comments

Comments
 (0)