diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 750f7aa..8c5c31e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,6 +1,6 @@ { "toad": "0.19.1", - "toad-array": "0.7.0", + "toad-array": "0.8.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 5dc8704..2f05c20 100644 --- a/toad-array/CHANGELOG.md +++ b/toad-array/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.8.0](https://github.com/toad-lib/toad/compare/toad-array-v0.7.0...toad-array-v0.8.0) (2023-05-11) + + +### ⚠ BREAKING CHANGES + +* reintroduce contiguous requirement on Array ([#345](https://github.com/toad-lib/toad/issues/345)) + +### Features + +* reintroduce contiguous requirement on Array ([#345](https://github.com/toad-lib/toad/issues/345)) ([88086fb](https://github.com/toad-lib/toad/commit/88086fbfc30112aa448a8f81e933ee89d9ea2625)) + ## [0.7.0](https://github.com/toad-lib/toad/compare/toad-array-v0.6.0...toad-array-v0.7.0) (2023-05-09) diff --git a/toad-array/Cargo.toml b/toad-array/Cargo.toml index d3d0bce..e3d9ec9 100644 --- a/toad-array/Cargo.toml +++ b/toad-array/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toad-array" -version = "0.7.0" +version = "0.8.0" edition = "2021" description = "Array trait used by the toad ecosystem to abstract over heap or heapless collections" authors = ["Orion Kindel "]