Preparing for v0.4.4 release

This commit is contained in:
Emil Fresk 2019-12-29 11:34:21 +01:00
parent 157436b099
commit c5297c01e0
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]
## [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

View file

@ -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"
@ -72,4 +73,4 @@ codegen-units = 1
lto = true
[workspace]
members = ["macros"]
members = ["macros"]