From 3fd9d056991cb4949f57d64ed2abd9bb55d00afe Mon Sep 17 00:00:00 2001 From: Orion Kindel Date: Tue, 9 May 2023 12:37:12 -0500 Subject: [PATCH] chore: release main (#342) --- .release-please-manifest.json | 2 +- toad-array/CHANGELOG.md | 11 +++++++++++ toad-array/Cargo.toml | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b3c86dbb..10d9844e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,6 +1,6 @@ { "toad": "0.19.1", - "toad-array": "0.5.0", + "toad-array": "0.6.0", "toad-common": "0.15.0", "toad-cursor": "0.2.0", "toad-hash": "0.3.0", diff --git a/toad-array/CHANGELOG.md b/toad-array/CHANGELOG.md index 34c7b9b2..1966bcdd 100644 --- a/toad-array/CHANGELOG.md +++ b/toad-array/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.6.0](https://github.com/toad-lib/toad/compare/toad-array-v0.5.0...toad-array-v0.6.0) (2023-05-09) + + +### ⚠ BREAKING CHANGES + +* add `idx`, `idx_mut` slice operations to `Indexed` ([#341](https://github.com/toad-lib/toad/issues/341)) + +### Features + +* add `idx`, `idx_mut` slice operations to `Indexed` ([#341](https://github.com/toad-lib/toad/issues/341)) ([d5e8408](https://github.com/toad-lib/toad/commit/d5e840814dc61c63d26b1bb59f57777e413f2bcf)) + ## [0.5.0](https://github.com/toad-lib/toad/compare/toad-array-v0.4.0...toad-array-v0.5.0) (2023-03-31) diff --git a/toad-array/Cargo.toml b/toad-array/Cargo.toml index c9a64329..4071da0b 100644 --- a/toad-array/Cargo.toml +++ b/toad-array/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toad-array" -version = "0.5.0" +version = "0.6.0" edition = "2021" description = "Array trait used by the toad ecosystem to abstract over heap or heapless collections" authors = ["Orion Kindel "]