diff options
-rw-r--r-- | cortex-m-rt/CHANGELOG.md | 6 | ||||
-rw-r--r-- | cortex-m-rt/Cargo.toml | 4 | ||||
-rw-r--r-- | cortex-m-rt/macros/Cargo.toml | 2 |
3 files changed, 9 insertions, 3 deletions
diff --git a/cortex-m-rt/CHANGELOG.md b/cortex-m-rt/CHANGELOG.md index 90b89fd..24caf41 100644 --- a/cortex-m-rt/CHANGELOG.md +++ b/cortex-m-rt/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.6.3] - 2018-09-09 + +### Fixed + +- Fixed the `rand` problem for real. + ## [v0.6.2] - 2018-09-09 ### Fixed diff --git a/cortex-m-rt/Cargo.toml b/cortex-m-rt/Cargo.toml index 360ccd8..41a958d 100644 --- a/cortex-m-rt/Cargo.toml +++ b/cortex-m-rt/Cargo.toml @@ -8,11 +8,11 @@ license = "MIT OR Apache-2.0" name = "cortex-m-rt" readme = "README.md" repository = "https://github.com/rust-embedded/cortex-m-rt" -version = "0.6.2" +version = "0.6.3" [dependencies] r0 = "0.2.1" -cortex-m-rt-macros = { path = "macros", version = "0.1.0" } +cortex-m-rt-macros = { path = "macros", version = "0.1.1" } [dev-dependencies] cortex-m = "0.5.4" diff --git a/cortex-m-rt/macros/Cargo.toml b/cortex-m-rt/macros/Cargo.toml index 48c96d0..8d7e517 100644 --- a/cortex-m-rt/macros/Cargo.toml +++ b/cortex-m-rt/macros/Cargo.toml @@ -7,7 +7,7 @@ keywords = ["arm", "cortex-m", "runtime", "startup"] license = "MIT OR Apache-2.0" name = "cortex-m-rt-macros" repository = "https://github.com/japaric/cortex-m-rt" -version = "0.1.0" +version = "0.1.1" [lib] proc-macro = true |