mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
Merge pull request #289 from rtfm-rs/v0.4.4_release
Preparing for v0.4.4 release
This commit is contained in:
commit
32c5a8f213
2 changed files with 10 additions and 6 deletions
|
@ -5,9 +5,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [v0.4.4] - 2019-12-29
|
||||
|
||||
### Fixed
|
||||
|
||||
- Soundness issue in the `MaybeUninit` implementation
|
||||
- [breaking-change][] [soundness-fix] Soundness issue in the `MaybeUninit` implementation
|
||||
- Warning for deprecated `mem::uninitialized`
|
||||
|
||||
## [v0.4.3] - 2019-04-21
|
||||
|
@ -236,7 +238,8 @@ Yanked due to a soundness issue in `init`; the issue has been mostly fixed in v0
|
|||
|
||||
- Initial release
|
||||
|
||||
[Unreleased]: https://github.com/japaric/cortex-m-rtfm/compare/v0.4.3...HEAD
|
||||
[Unreleased]: https://github.com/japaric/cortex-m-rtfm/compare/v0.4.4...HEAD
|
||||
[v0.4.4]: https://github.com/japaric/cortex-m-rtfm/compare/v0.4.3...v0.4.4
|
||||
[v0.4.3]: https://github.com/japaric/cortex-m-rtfm/compare/v0.4.2...v0.4.3
|
||||
[v0.4.2]: https://github.com/japaric/cortex-m-rtfm/compare/v0.4.1...v0.4.2
|
||||
[v0.4.1]: https://github.com/japaric/cortex-m-rtfm/compare/v0.4.0...v0.4.1
|
||||
|
|
|
@ -1,18 +1,19 @@
|
|||
[package]
|
||||
authors = [
|
||||
"The Real Time For the Masses developers",
|
||||
"Jorge Aparicio <jorge@japaric.io>",
|
||||
"Per Lindgren <per.lindgren@ltu.se>",
|
||||
]
|
||||
categories = ["concurrency", "embedded", "no-std"]
|
||||
description = "Real Time For the Masses (RTFM): a concurrency framework for building real time systems"
|
||||
documentation = "https://japaric.github.io/cortex-m-rtfm/book/en"
|
||||
documentation = "https://rtfm.rs/"
|
||||
edition = "2018"
|
||||
keywords = ["arm", "cortex-m"]
|
||||
license = "MIT OR Apache-2.0"
|
||||
name = "cortex-m-rtfm"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/japaric/cortex-m-rtfm"
|
||||
version = "0.4.3"
|
||||
repository = "https://github.com/rtfm-rs/cortex-m-rtfm"
|
||||
version = "0.4.4"
|
||||
|
||||
[lib]
|
||||
name = "rtfm"
|
||||
|
|
Loading…
Reference in a new issue