diff --git a/CHANGELOG.md b/CHANGELOG.md index f81da58..25f721e 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.5](https://github.com/uael/nearest/compare/v0.4.4...v0.4.5) - 2026-03-09 + +### Fixed + +- *(nearest-derive)* add Flat bounds to unbounded type params in emit impl ([#32](https://github.com/uael/nearest/pull/32)) + ## [0.4.4](https://github.com/uael/nearest/compare/v0.4.3...v0.4.4) - 2026-03-09 ### Added diff --git a/Cargo.lock b/Cargo.lock index c0d923e..c0baf0f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -360,7 +360,7 @@ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79" [[package]] name = "nearest" -version = "0.4.4" +version = "0.4.5" dependencies = [ "criterion", "nearest-derive", @@ -371,7 +371,7 @@ dependencies = [ [[package]] name = "nearest-derive" -version = "0.3.4" +version = "0.3.5" dependencies = [ "proc-macro2", "quote", diff --git a/nearest-derive/Cargo.toml b/nearest-derive/Cargo.toml index d11905f..df00fc0 100644 --- a/nearest-derive/Cargo.toml +++ b/nearest-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nearest-derive" -version = "0.3.4" +version = "0.3.5" edition.workspace = true rust-version.workspace = true license = "Apache-2.0 OR MIT" diff --git a/nearest/Cargo.toml b/nearest/Cargo.toml index e0a1264..6053dc6 100644 --- a/nearest/Cargo.toml +++ b/nearest/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nearest" -version = "0.4.4" +version = "0.4.5" edition.workspace = true rust-version.workspace = true license = "Apache-2.0 OR MIT" @@ -19,7 +19,7 @@ std = ["alloc"] serde = ["dep:serde"] [dependencies] -nearest-derive = { version = "=0.3.4", path = "../nearest-derive" } +nearest-derive = { version = "=0.3.5", path = "../nearest-derive" } serde = { version = "1", optional = true, default-features = false, features = ["alloc"] } [dev-dependencies]