Skip to content

Commit 1cccda2

Browse files
authored
v0.4.9 (#182)
## Added - Functions for casting from core references (#181) - `Array::cast_from_core`: `const fn` equivalent of `From<[T; N]>` - `Array::cast_from_core_mut`: `mut` equivalent of the above - `Array::from_ref`: cast `&T` to `&Array<T; U1>` - `Array::from_mut`: `mut` equivalent of the above
1 parent 7569e51 commit 1cccda2

3 files changed

Lines changed: 12 additions & 2 deletions

File tree

CHANGELOG.md

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

8+
## 0.4.9 (2026-03-30)
9+
### Added
10+
- Functions for casting from core references ([#181])
11+
- `Array::cast_from_core`: `const fn` equivalent of `From<[T; N]>`
12+
- `Array::cast_from_core_mut`: `mut` equivalent of the above
13+
- `Array::from_ref`: cast `&T` to `&Array<T; U1>`
14+
- `Array::from_mut`: `mut` equivalent of the above
15+
16+
[#181]: https://github.com/RustCrypto/hybrid-array/pull/181
17+
818
## 0.4.8 (2026-03-08)
919
### Added
1020
- `ctutils` support ([#177])

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.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hybrid-array"
3-
version = "0.4.8"
3+
version = "0.4.9"
44
description = """
55
Hybrid typenum-based and const generic array types designed to provide the
66
flexibility of typenum-based expressions while also allowing interoperability

0 commit comments

Comments
 (0)