From 436ca33ed175a5e1c72e932a2687bfcd0b34008f Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Thu, 22 Jan 2026 14:02:35 -0700 Subject: [PATCH] v0.4.6 --- CHANGELOG.md | 8 ++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- LICENSE-MIT | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7857bf8..b338432 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ 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.6 (2026-01-22) +### Added +- Optional dependency on `zerocopy` with impls for `Array` ([#162]) +- `Debug` bound to `ArraySize` ([#165]) + +[#162]: https://github.com/RustCrypto/hybrid-array/pull/162 +[#165]: https://github.com/RustCrypto/hybrid-array/pull/165 + ## 0.4.5 (2025-09-29) ### Added - Impl `arbitrary::Arbitrary` for `Array` ([#153]) diff --git a/Cargo.lock b/Cargo.lock index d5d4e30..3e05b4e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -16,7 +16,7 @@ checksum = "b6b1fc10dbac614ebc03540c9dbd60e83887fda27794998c6528f1782047d540" [[package]] name = "hybrid-array" -version = "0.4.5" +version = "0.4.6" dependencies = [ "arbitrary", "bytemuck", diff --git a/Cargo.toml b/Cargo.toml index 18448d3..4af6fb0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hybrid-array" -version = "0.4.5" +version = "0.4.6" description = """ Hybrid typenum-based and const generic array types designed to provide the flexibility of typenum-based expressions while also allowing interoperability diff --git a/LICENSE-MIT b/LICENSE-MIT index 3d7cd6a..5b37ba5 100644 --- a/LICENSE-MIT +++ b/LICENSE-MIT @@ -1,4 +1,4 @@ -Copyright (c) 2022-2025 The RustCrypto Project Developers +Copyright (c) 2022-2026 The RustCrypto Project Developers Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated