From 234dd6121ed236276a7c67f89f68ebc918c617f7 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Mon, 29 Sep 2025 14:36:38 -0600 Subject: [PATCH] v0.4.5 --- CHANGELOG.md | 10 ++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 73b8dd4..7857bf8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ 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.5 (2025-09-29) +### Added +- Impl `arbitrary::Arbitrary` for `Array` ([#153]) + +### Changed +- Switch from `doc_auto_cfg` to `doc_cfg` ([#154]) + +[#153]: https://github.com/RustCrypto/hybrid-array/pull/153 +[#154]: https://github.com/RustCrypto/hybrid-array/pull/154 + ## 0.4.4 (2025-09-24) ### Added - Enable the `subtle/const-generics` feature ([#149]) diff --git a/Cargo.lock b/Cargo.lock index 03ab37e..c76400a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -36,7 +36,7 @@ checksum = "b6b1fc10dbac614ebc03540c9dbd60e83887fda27794998c6528f1782047d540" [[package]] name = "hybrid-array" -version = "0.4.4" +version = "0.4.5" dependencies = [ "arbitrary", "bincode", diff --git a/Cargo.toml b/Cargo.toml index 432ed36..3a69316 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hybrid-array" -version = "0.4.4" +version = "0.4.5" description = """ Hybrid typenum-based and const generic array types designed to provide the flexibility of typenum-based expressions while also allowing interoperability