Merge pull request #289 from rtfm-rs/v0.4.4_release

Preparing for v0.4.4 release
This commit is contained in:
Jorge Aparicio 2020-01-06 19:02:55 +01:00 committed by GitHub
commit 32c5a8f213
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 6 deletions

View file

@ -5,9 +5,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased] ## [Unreleased]
## [v0.4.4] - 2019-12-29
### Fixed ### Fixed
- Soundness issue in the `MaybeUninit` implementation - [breaking-change][] [soundness-fix] Soundness issue in the `MaybeUninit` implementation
- Warning for deprecated `mem::uninitialized` - Warning for deprecated `mem::uninitialized`
## [v0.4.3] - 2019-04-21 ## [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 - 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.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.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 [v0.4.1]: https://github.com/japaric/cortex-m-rtfm/compare/v0.4.0...v0.4.1

View file

@ -1,18 +1,19 @@
[package] [package]
authors = [ authors = [
"The Real Time For the Masses developers",
"Jorge Aparicio <jorge@japaric.io>", "Jorge Aparicio <jorge@japaric.io>",
"Per Lindgren <per.lindgren@ltu.se>", "Per Lindgren <per.lindgren@ltu.se>",
] ]
categories = ["concurrency", "embedded", "no-std"] categories = ["concurrency", "embedded", "no-std"]
description = "Real Time For the Masses (RTFM): a concurrency framework for building real time systems" 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" edition = "2018"
keywords = ["arm", "cortex-m"] keywords = ["arm", "cortex-m"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
name = "cortex-m-rtfm" name = "cortex-m-rtfm"
readme = "README.md" readme = "README.md"
repository = "https://github.com/japaric/cortex-m-rtfm" repository = "https://github.com/rtfm-rs/cortex-m-rtfm"
version = "0.4.3" version = "0.4.4"
[lib] [lib]
name = "rtfm" name = "rtfm"