From 946993bac85d2c4db998bf1d00b77439a26a274e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 16 Sep 2024 14:00:08 +0100 Subject: [PATCH] chore: release v0.14.1 (#68) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- 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 3fc79e8..934aac0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.14.1](https://github.com/rinde/more_collections/compare/v0.14.0...v0.14.1) - 2024-09-16 + +### Added + +- add serde support for VecMap ([#65](https://github.com/rinde/more_collections/pull/65)) + +### Other + +- Remove unnecessary `Clone` bounds ([#67](https://github.com/rinde/more_collections/pull/67)) + ## [0.14.0](https://github.com/rinde/more_collections/compare/v0.13.6...v0.14.0) - 2024-06-14 ### Changed diff --git a/Cargo.lock b/Cargo.lock index b0703a8..14d2a33 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -366,7 +366,7 @@ dependencies = [ [[package]] name = "more_collections" -version = "0.14.0" +version = "0.14.1" dependencies = [ "criterion", "derive_more", diff --git a/Cargo.toml b/Cargo.toml index 5e62c5d..ecac706 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "more_collections" -version = "0.14.0" +version = "0.14.1" authors = ["Rinde van Lon "] description = "Additional collections not found in std::collections" repository = "https://github.com/rinde/more_collections/"