From 0af7cb1f2d0cbfb5272d49310076ce4eef486041 Mon Sep 17 00:00:00 2001 From: Kamal Ahmad Date: Mon, 2 Dec 2024 08:28:31 +0500 Subject: [PATCH] chore: Release bounded-vec version 0.8.0 --- CHANGELOG.md | 5 ++++- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c2c603f..bde2cad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate - prevent out of bound construction and define empty vs nonempty at compile time +======= +## [0.8.0] - 2024-12-02 ## [0.7.1] - 2022-08-01 ### Added - fix `Abrbitrary` impl to honor upper(U) and lower(L) bounds; @@ -53,7 +55,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.7.1...HEAD +[Unreleased]: https://github.com/ergoplatform/bounded-vec/compare/v0.8.0...HEAD +[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 [0.6.0]: https://github.com/ergoplatform/bounded-vec/compare/v0.5.0...v0.6.0 diff --git a/Cargo.toml b/Cargo.toml index 5ac0615..35ca60b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bounded-vec" -version = "0.7.1" +version = "0.8.0" license = "CC0-1.0" authors = ["Denys Zadorozhnyi "] edition = "2021"