diff --git a/cortex-m-semihosting/CHANGELOG.md b/cortex-m-semihosting/CHANGELOG.md index 38ee835e..2b9c780d 100644 --- a/cortex-m-semihosting/CHANGELOG.md +++ b/cortex-m-semihosting/CHANGELOG.md @@ -6,6 +6,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - Always use inline-asm, requiring Rust 1.59. +- Removed inline-asm feature. ## [v0.4.1] - 2020-10-20 diff --git a/cortex-m-semihosting/Cargo.toml b/cortex-m-semihosting/Cargo.toml index b539e134..32e980e7 100644 --- a/cortex-m-semihosting/Cargo.toml +++ b/cortex-m-semihosting/Cargo.toml @@ -16,7 +16,6 @@ edition = "2021" rust-version = "1.59" [features] -inline-asm = [] jlink-quirks = [] no-semihosting = [] diff --git a/panic-semihosting/CHANGELOG.md b/panic-semihosting/CHANGELOG.md index c7a2e78d..5f7bf7bd 100644 --- a/panic-semihosting/CHANGELOG.md +++ b/panic-semihosting/CHANGELOG.md @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - Always use inline-asm, requiring Rust 1.59. +- Remove inline-asm feature. ## [v0.5.6] - 2020-11-14 diff --git a/panic-semihosting/Cargo.toml b/panic-semihosting/Cargo.toml index 0e9749ae..4aaadb43 100644 --- a/panic-semihosting/Cargo.toml +++ b/panic-semihosting/Cargo.toml @@ -20,7 +20,6 @@ cortex-m-semihosting = { path = "../cortex-m-semihosting", version = ">= 0.3, < [features] exit = [] -inline-asm = [] jlink-quirks = ["cortex-m-semihosting/jlink-quirks"] [package.metadata.docs.rs]