From 0a1b4e7f032320e20ba0590929d29bdae94072d9 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Wed, 10 Sep 2025 14:13:38 -0600 Subject: [PATCH] hybrid-array v0.4.1 --- CHANGELOG.md | 6 ++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 26c6dbc..ef544e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ 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). +## 0.4.1 (2025-09-10) +### Changed +- Make slice conversions `const fn` ([#140]) + +[#140]: https://github.com/RustCrypto/hybrid-array/pull/140 + ## 0.4.0 (2025-09-01) ### Added - `ArraySize` impls for `U536` and `U568` ([#128]) diff --git a/Cargo.lock b/Cargo.lock index 2786588..9adbdf3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -30,7 +30,7 @@ checksum = "b6b1fc10dbac614ebc03540c9dbd60e83887fda27794998c6528f1782047d540" [[package]] name = "hybrid-array" -version = "0.4.0" +version = "0.4.1" dependencies = [ "bincode", "bytemuck", diff --git a/Cargo.toml b/Cargo.toml index 799b198..c483716 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hybrid-array" -version = "0.4.0" +version = "0.4.1" description = """ Hybrid typenum-based and const generic array types designed to provide the flexibility of typenum-based expressions while also allowing interoperability