diff options
author | 2021-07-03 21:01:04 +0000 | |
---|---|---|
committer | 2021-07-03 21:01:04 +0000 | |
commit | 45e7ab72661a8823e98e8fba821f2addcea95d3f (patch) | |
tree | 7e88a042a84b278be093a2019b1e5cfae026f83a | |
parent | 47246ecc06f7a6665885fd19cd14f35fa390ab95 (diff) | |
parent | 1747d44c2aa0fa7744b6af588f9d9bb8b108a349 (diff) | |
download | cortex-m-45e7ab72661a8823e98e8fba821f2addcea95d3f.tar.gz cortex-m-45e7ab72661a8823e98e8fba821f2addcea95d3f.tar.zst cortex-m-45e7ab72661a8823e98e8fba821f2addcea95d3f.zip |
Merge #345v0.7.3
345: Prepare for v0.7.3 r=therealprof a=adamgreig
We've had #337 merged for a while and it seems like it would be helpful for users to get it released, and now #344 to go with it. No other changes since then (except a small doc change) so it should be an easy release.
Co-authored-by: Adam Greig <adam@adamgreig.com>
-rw-r--r-- | CHANGELOG.md | 14 | ||||
-rw-r--r-- | Cargo.toml | 2 |
2 files changed, 14 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d29633..a3f8211 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.7.3] - 2021-07-03 + +### Fixed + +- Fixed compilation for native targets on non-x86 host systems (#336, #337). + +### Added + +- The `Delay` struct now offers direct `delay_us()` and `delay_ms()` methods + without having to go through the embedded-hal traits (#344). + ## [v0.7.2] - 2021-03-07 ### Fixed @@ -689,7 +700,8 @@ fn main() { - Functions to get the vector table - Wrappers over miscellaneous instructions like `bkpt` -[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/v0.7.2...HEAD +[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/v0.7.3...HEAD +[v0.7.3]: https://github.com/rust-embedded/cortex-m/compare/v0.7.2...v0.7.3 [v0.7.2]: https://github.com/rust-embedded/cortex-m/compare/v0.7.1...v0.7.2 [v0.7.1]: https://github.com/rust-embedded/cortex-m/compare/v0.7.0...v0.7.1 [v0.7.0]: https://github.com/rust-embedded/cortex-m/compare/v0.6.4...v0.7.0 @@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0" name = "cortex-m" readme = "README.md" repository = "https://github.com/rust-embedded/cortex-m" -version = "0.7.2" +version = "0.7.3" edition = "2018" links = "cortex-m" # prevent multiple versions of this crate to be linked together |