From 23d42a1329f7782519838501b7d75c9f41a77646 Mon Sep 17 00:00:00 2001 From: Kamal Ahmad Date: Thu, 5 Jun 2025 19:19:41 +0500 Subject: [PATCH 1/3] Update CHANGELOG.md --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index bde2cad..eea9f60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate + +### Added - prevent out of bound construction and define empty vs nonempty at compile time ======= From 4d48b6742e00c34aeb35b7f5788e23b5b37f5f00 Mon Sep 17 00:00:00 2001 From: Kamal Ahmad Date: Thu, 5 Jun 2025 19:24:42 +0500 Subject: [PATCH 2/3] Update authors --- Cargo.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c393b01..c073f3c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,10 @@ name = "bounded-vec" version = "0.8.0" license = "CC0-1.0" -authors = ["Denys Zadorozhnyi "] +authors = [ + "Denys Zadorozhnyi ", + "Kamal Ahmad ", +] edition = "2021" description = "Non-empty rust Vec wrapper with type guarantees on lower and upper bounds for items quantity." repository = "https://github.com/ergoplatform/bounded-vec" From 7de9bb4cf9c8cca77a99674a58dbc98d19ab1975 Mon Sep 17 00:00:00 2001 From: Kamal Ahmad Date: Thu, 5 Jun 2025 19:25:15 +0500 Subject: [PATCH 3/3] chore: Release bounded-vec version 0.9.0 --- CHANGELOG.md | 4 +++- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eea9f60..dc85a0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate +## [0.9.0] - 2025-06-05 ### Added - prevent out of bound construction and define empty vs nonempty at compile time @@ -57,7 +58,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - initial `BoundedVec` implementation including `mapped()`, `first()`, `last()`, to/from array/`Vec`; -[Unreleased]: https://github.com/ergoplatform/bounded-vec/compare/v0.8.0...HEAD +[Unreleased]: https://github.com/ergoplatform/bounded-vec/compare/v0.9.0...HEAD +[0.9.0]: https://github.com/ergoplatform/bounded-vec/compare/v0.8.0...v0.9.0 [0.8.0]: https://github.com/ergoplatform/bounded-vec/compare/v0.7.1...v0.8.0 [0.7.1]: https://github.com/ergoplatform/bounded-vec/compare/v0.7.0...v0.7.1 [0.7.0]: https://github.com/ergoplatform/bounded-vec/compare/v0.6.0...v0.7.0 diff --git a/Cargo.toml b/Cargo.toml index c073f3c..dec7f56 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bounded-vec" -version = "0.8.0" +version = "0.9.0" license = "CC0-1.0" authors = [ "Denys Zadorozhnyi ",