Skip to content

Commit 45e7ab7

Browse files
bors[bot]adamgreig
andauthored
Merge #345
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 <[email protected]>
2 parents 47246ec + 1747d44 commit 45e7ab7

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

CHANGELOG.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [v0.7.3] - 2021-07-03
11+
12+
### Fixed
13+
14+
- Fixed compilation for native targets on non-x86 host systems (#336, #337).
15+
16+
### Added
17+
18+
- The `Delay` struct now offers direct `delay_us()` and `delay_ms()` methods
19+
without having to go through the embedded-hal traits (#344).
20+
1021
## [v0.7.2] - 2021-03-07
1122

1223
### Fixed
@@ -689,7 +700,8 @@ fn main() {
689700
- Functions to get the vector table
690701
- Wrappers over miscellaneous instructions like `bkpt`
691702

692-
[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/v0.7.2...HEAD
703+
[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/v0.7.3...HEAD
704+
[v0.7.3]: https://github.com/rust-embedded/cortex-m/compare/v0.7.2...v0.7.3
693705
[v0.7.2]: https://github.com/rust-embedded/cortex-m/compare/v0.7.1...v0.7.2
694706
[v0.7.1]: https://github.com/rust-embedded/cortex-m/compare/v0.7.0...v0.7.1
695707
[v0.7.0]: https://github.com/rust-embedded/cortex-m/compare/v0.6.4...v0.7.0

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0"
1111
name = "cortex-m"
1212
readme = "README.md"
1313
repository = "https://github.com/rust-embedded/cortex-m"
14-
version = "0.7.2"
14+
version = "0.7.3"
1515
edition = "2018"
1616
links = "cortex-m" # prevent multiple versions of this crate to be linked together
1717

0 commit comments

Comments
 (0)