diff --git a/CHANGELOG.md b/CHANGELOG.md index 04b59a4..f81da58 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.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.4.4](https://github.com/uael/nearest/compare/v0.4.3...v0.4.4) - 2026-03-09 + +### Added + +- add `array` emitter for `[T; N]` fields ([#30](https://github.com/uael/nearest/pull/30)) + ## [0.4.3](https://github.com/uael/nearest/compare/v0.4.2...v0.4.3) - 2026-03-09 ### Other diff --git a/Cargo.lock b/Cargo.lock index 475fe43..c0d923e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -360,7 +360,7 @@ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79" [[package]] name = "nearest" -version = "0.4.3" +version = "0.4.4" dependencies = [ "criterion", "nearest-derive", diff --git a/nearest/Cargo.toml b/nearest/Cargo.toml index 600c024..e0a1264 100644 --- a/nearest/Cargo.toml +++ b/nearest/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nearest" -version = "0.4.3" +version = "0.4.4" edition.workspace = true rust-version.workspace = true license = "Apache-2.0 OR MIT"