diff options
author | 2018-09-08 22:39:34 +0000 | |
---|---|---|
committer | 2018-09-08 22:39:34 +0000 | |
commit | e7f26c973d0613a7d2852838774f464bc8ee9e30 (patch) | |
tree | 49a0b239522674569dadd682e4c2b5e34d05944f | |
parent | 513e66ff804c096d98b408fbf87f599aed0a9af2 (diff) | |
parent | 250e5c14499dabc76130c2d4ba933f552d96b0a7 (diff) | |
download | cortex-m-e7f26c973d0613a7d2852838774f464bc8ee9e30.tar.gz cortex-m-e7f26c973d0613a7d2852838774f464bc8ee9e30.tar.zst cortex-m-e7f26c973d0613a7d2852838774f464bc8ee9e30.zip |
Merge #113
113: v0.6.2 r=therealprof a=japaric
required to make a new release
r? @rust-embedded/cortex-m (anyone)
Co-authored-by: Jorge Aparicio <jorge@japaric.io>
-rw-r--r-- | cortex-m-rt/CHANGELOG.md | 11 | ||||
-rw-r--r-- | cortex-m-rt/Cargo.toml | 2 |
2 files changed, 11 insertions, 2 deletions
diff --git a/cortex-m-rt/CHANGELOG.md b/cortex-m-rt/CHANGELOG.md index 7721d91..90b89fd 100644 --- a/cortex-m-rt/CHANGELOG.md +++ b/cortex-m-rt/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.6.2] - 2018-09-09 + +### Fixed + +- Worked around a Cargo limitation that broke builds that depend on `rand`. + +- Updated the documentation link in the README to point to working docs. + ## [v0.6.1] - 2018-09-06 ### Changed @@ -358,7 +366,8 @@ section size addr Initial release -[Unreleased]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.1...HEAD +[Unreleased]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.2...HEAD +[v0.6.2]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.1...v0.6.2 [v0.6.1]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.0...v0.6.1 [v0.6.0]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.5.3...v0.6.0 [v0.5.3]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.5.2...v0.5.3 diff --git a/cortex-m-rt/Cargo.toml b/cortex-m-rt/Cargo.toml index 9d82794..360ccd8 100644 --- a/cortex-m-rt/Cargo.toml +++ b/cortex-m-rt/Cargo.toml @@ -8,7 +8,7 @@ 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.1" +version = "0.6.2" [dependencies] r0 = "0.2.1" |