diff options
author | 2022-03-29 17:53:45 +0000 | |
---|---|---|
committer | 2022-03-29 17:53:45 +0000 | |
commit | b4eaadcfa5c2600b0337e3a6f5e887a078523c49 (patch) | |
tree | a34ded935f98de05f9ef9b84388796ac89a8436c /panic-semihosting/Cargo.toml | |
parent | c2e77c5aee4a2c587f4bb3dc4a91a6bd02b322a6 (diff) | |
parent | 3fd1b2261dc3a45b4f2efda2172cd342b1ea0d02 (diff) | |
download | cortex-m-b4eaadcfa5c2600b0337e3a6f5e887a078523c49.tar.gz cortex-m-b4eaadcfa5c2600b0337e3a6f5e887a078523c49.tar.zst cortex-m-b4eaadcfa5c2600b0337e3a6f5e887a078523c49.zip |
Merge #424p-sh-v0.6.0c-m-sh-v0.5.0
424: Prepare for c-m-sh v0.4.2, p-sh v0.6.0 r=newAM a=adamgreig
This PR prepares for a release of cortex-m-semihosting 0.4.2 and panic-semihosting 0.6.0. Since we never had a non-yanked 0.4.x version of cortex-m-semihosting, this is essentially a new breaking release for both crates. The main change is the use of the new asm macro, with the removal of the inline-asm feature and bumped MSRV.
Co-authored-by: Adam Greig <adam@adamgreig.com>
Diffstat (limited to 'panic-semihosting/Cargo.toml')
-rw-r--r-- | panic-semihosting/Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/panic-semihosting/Cargo.toml b/panic-semihosting/Cargo.toml index 4aaadb4..f096614 100644 --- a/panic-semihosting/Cargo.toml +++ b/panic-semihosting/Cargo.toml @@ -10,13 +10,13 @@ keywords = ["panic-handler", "panic-impl", "panic", "semihosting"] license = "MIT OR Apache-2.0" name = "panic-semihosting" repository = "https://github.com/rust-embedded/cortex-m" -version = "0.5.6" +version = "0.6.0" rust-version = "1.59" edition = "2021" [dependencies] cortex-m = { path = "..", version = ">= 0.5.6, < 0.8" } -cortex-m-semihosting = { path = "../cortex-m-semihosting", version = ">= 0.3, < 0.5" } +cortex-m-semihosting = { path = "../cortex-m-semihosting", version = ">= 0.5.0, < 0.6" } [features] exit = [] |