v0.7.5 release

This commit is contained in:
Emil Fresk 2021-08-16 14:16:52 +02:00
parent c82478f78b
commit f49f967148
2 changed files with 15 additions and 3 deletions

View File

@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased] ## [Unreleased]
## [v0.7.5] - 2021-08-16
### Added
- Added `SortedLinkedList`
- Added `Vec::is_empty`, one does not need to go through a slice anymore
### Changed
- `Vec::pop_unchecked` is now public
## [v0.7.4] - 2021-08-06 ## [v0.7.4] - 2021-08-06
### Added ### Added
@ -22,7 +33,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Added ### Added
- Added `Deque`. - Added `Deque`
### Changed ### Changed
@ -386,7 +397,8 @@ architecture.
- Initial release - Initial release
[Unreleased]: https://github.com/japaric/heapless/compare/v0.7.4...HEAD [Unreleased]: https://github.com/japaric/heapless/compare/v0.7.5...HEAD
[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.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 [v0.7.3]: https://github.com/japaric/heapless/compare/v0.7.2...v0.7.3
[v0.7.2]: https://github.com/japaric/heapless/compare/v0.7.1...v0.7.2 [v0.7.2]: https://github.com/japaric/heapless/compare/v0.7.1...v0.7.2

View File

@ -12,7 +12,7 @@ keywords = ["static", "no-heap"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
name = "heapless" name = "heapless"
repository = "https://github.com/japaric/heapless" repository = "https://github.com/japaric/heapless"
version = "0.7.4" version = "0.7.5"
[features] [features]
default = ["cas"] default = ["cas"]