Skip to content

Commit 399793b

Browse files
bors[bot]japaric
andcommitted
Merge #109
109: v0.5.5 r=adamgreig a=japaric commit required to make a new release r? @rust-embedded/cortex-m (anyone) Co-authored-by: Jorge Aparicio <[email protected]>
2 parents 478418c + ca61bae commit 399793b

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [v0.5.5] - 2018-08-27
11+
12+
### Changed
13+
14+
- This crate no longer depends on `arm-none-eabi-gcc`.
15+
1016
## [v0.5.4] - 2018-08-11
1117

1218
### Added
@@ -483,7 +489,8 @@ fn main() {
483489
- Functions to get the vector table
484490
- Wrappers over miscellaneous instructions like `bkpt`
485491

486-
[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/v0.5.4...HEAD
492+
[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/v0.5.5...HEAD
493+
[v0.5.5]: https://github.com/rust-embedded/cortex-m/compare/v0.5.4...v0.5.5
487494
[v0.5.4]: https://github.com/rust-embedded/cortex-m/compare/v0.5.3...v0.5.4
488495
[v0.5.3]: https://github.com/rust-embedded/cortex-m/compare/v0.5.2...v0.5.3
489496
[v0.5.2]: https://github.com/rust-embedded/cortex-m/compare/v0.5.1...v0.5.2

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ keywords = ["arm", "cortex-m", "register", "peripheral"]
77
license = "MIT OR Apache-2.0"
88
name = "cortex-m"
99
repository = "https://github.com/japaric/cortex-m"
10-
version = "0.5.4"
10+
version = "0.5.5"
1111

1212
[dependencies]
1313
aligned = "0.2.0"

src/lib.rs

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,18 @@
77
//! - Interrupt manipulation mechanisms
88
//! - Safe wrappers around Cortex-M specific instructions like `bkpt`
99
//!
10-
//! # Requirements
11-
//!
12-
//! To use this crate on the stable or beta channel `arm-none-eabi-gcc` needs to be installed and
13-
//! available in your `$PATH`.
14-
//!
1510
//! # Optional features
1611
//!
1712
//! ## `inline-asm`
1813
//!
1914
//! When this feature is enabled the implementation of all the functions inside the `asm` and
2015
//! `register` modules use inline assembly (`asm!`) instead of external assembly (FFI into separate
21-
//! assembly files compiled using `arm-none-eabi-gcc`). The advantages the enabling `inline-asm`
16+
//! assembly files pre-compiled using `arm-none-eabi-gcc`). The advantages of enabling `inline-asm`
2217
//! are:
2318
//!
2419
//! - Reduced overhead. FFI eliminates the possibility of inlining so all operations include a
2520
//! function call overhead when `inline-asm` is not enabled.
2621
//!
27-
//! - `arm-none-eabi-gcc` is not required for building this crate.
28-
//!
2922
//! - Some of the `register` API only becomes available only when `inline-asm` is enabled. Check the
3023
//! API docs for details.
3124
//!

0 commit comments

Comments
 (0)