From 23627b9dd091c7c8855c83e6fd4e90d9af501844 Mon Sep 17 00:00:00 2001 From: Emil Fresk Date: Tue, 21 Sep 2021 17:42:45 +0200 Subject: [PATCH] Prepare v0.7.6 release --- CHANGELOG.md | 17 ++++++++++++++++- Cargo.toml | 2 +- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f8c55697..b991fdce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.7.6] - 2021-09-21 + +### Added + +- Added `ArcPool` +- Added `Debug` impl for `Deque` + +### Fixed + +- ZSTs in `Pool` now works correctly +- Some MIRI errors were resolved +- Allow `pool!` on thumbv6 +- Fixed possible UB in `Pool` on x86 + ## [v0.7.5] - 2021-08-16 ### Added @@ -397,7 +411,8 @@ architecture. - Initial release -[Unreleased]: https://github.com/japaric/heapless/compare/v0.7.5...HEAD +[Unreleased]: https://github.com/japaric/heapless/compare/v0.7.6...HEAD +[v0.7.5]: https://github.com/japaric/heapless/compare/v0.7.5...v0.7.6 [v0.7.5]: https://github.com/japaric/heapless/compare/v0.7.4...v0.7.5 [v0.7.4]: https://github.com/japaric/heapless/compare/v0.7.3...v0.7.4 [v0.7.3]: https://github.com/japaric/heapless/compare/v0.7.2...v0.7.3 diff --git a/Cargo.toml b/Cargo.toml index 92ec2954..e39912cf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ keywords = ["static", "no-heap"] license = "MIT OR Apache-2.0" name = "heapless" repository = "https://github.com/japaric/heapless" -version = "0.7.5" +version = "0.7.6" [features] default = ["cas"]