diff options
author | 2018-09-09 12:08:10 +0000 | |
---|---|---|
committer | 2018-09-09 12:08:10 +0000 | |
commit | 27501f88b8c6ae9746efea01416f5276e43171eb (patch) | |
tree | c40cecc2cc3e9a1d484a9a7d2de5cde0da1446f9 | |
parent | e7f26c973d0613a7d2852838774f464bc8ee9e30 (diff) | |
parent | 44c9411538396ce6b545229e2432ea1c2e071d11 (diff) | |
download | cortex-m-27501f88b8c6ae9746efea01416f5276e43171eb.tar.gz cortex-m-27501f88b8c6ae9746efea01416f5276e43171eb.tar.zst cortex-m-27501f88b8c6ae9746efea01416f5276e43171eb.zip |
Merge #114
114: v0.6.3 and v0.1.1 r=therealprof a=japaric
fixes the `rand` issues
r? @rust-embedded/cortex-m (anyone)
Co-authored-by: Jorge Aparicio <jorge@japaric.io>
-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 |