Skip to content

Commit a66ed6d

Browse files
authored
Release inout v0.2.0 (#1235)
### Changed - Migrated from `generic-array` to `hybrid-array` ([#944]) - Edition changed to 2024 and MSRV bumped to 1.85 ([#1149]) ### Added - `InOut::into_out` and `InOutBufReserved::into_out` methods ([#1132]) - `InOutBufReserved::split_reserved` method ([#1133]) - `InOut::into_out_with_copied_in` and `InOutBuf::into_out_with_copied_in` methods ([#1169]) [#944]: #944 [#1132]: #1132 [#1133]: #1133 [#1149]: #1149 [#1169]: #1169
1 parent e0020c5 commit a66ed6d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

inout/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ 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-
## 0.2.0 (unreleased)
7+
## 0.2.0 (2025-10-06)
88
### Changed
99
- Migrated from `generic-array` to `hybrid-array` ([#944])
1010
- Edition changed to 2024 and MSRV bumped to 1.85 ([#1149])
@@ -16,7 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1616

1717
[#944]: https://github.com/RustCrypto/utils/pull/944
1818
[#1132]: https://github.com/RustCrypto/utils/pull/1132
19-
[#1132]: https://github.com/RustCrypto/utils/pull/1132
19+
[#1133]: https://github.com/RustCrypto/utils/pull/1133
2020
[#1149]: https://github.com/RustCrypto/utils/pull/1149
2121
[#1169]: https://github.com/RustCrypto/utils/pull/1169
2222

inout/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "inout"
3-
version = "0.2.0-rc.6"
3+
version = "0.2.0"
44
description = "Custom reference types for code generic over in-place and buffer-to-buffer modes of operation."
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"
@@ -12,8 +12,8 @@ keywords = ["custom-reference"]
1212
readme = "README.md"
1313

1414
[dependencies]
15-
block-padding = { version = "0.4.0", path = "../block-padding", optional = true }
1615
hybrid-array = "0.4"
16+
block-padding = { version = "0.4", path = "../block-padding", optional = true }
1717

1818
[package.metadata.docs.rs]
1919
all-features = true

0 commit comments

Comments
 (0)