diff --git a/CHANGELOG.md b/CHANGELOG.md index be29986714..e9109b983d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.toml b/Cargo.toml index bf8e009bfa..35c27bd4b0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,18 +1,19 @@ [package] authors = [ + "The Real Time For the Masses developers", "Jorge Aparicio ", "Per Lindgren ", ] 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"] \ No newline at end of file +members = ["macros"]