Skip to content
This repository was archived by the owner on Dec 2, 2020. It is now read-only.

Commit 705d9e6

Browse files
bors[bot]japaric
andcommitted
Merge #21
21: v0.3.1 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 bb06723 + fa407c3 commit 705d9e6

File tree

3 files changed

+15
-16
lines changed

3 files changed

+15
-16
lines changed

CHANGELOG.md

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
55

66
## [Unreleased]
77

8+
## [v0.3.1] - 2018-08-27
9+
10+
### Changed
11+
12+
- This crate no longer depends on `arm-none-eabi-gcc`.
13+
814
## [v0.3.0] - 2018-05-10
915

1016
### Changed
@@ -72,10 +78,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
7278

7379
- Initial release
7480

75-
[Unreleased]: https://github.com/japaric/cortex-m-semihosting/compare/v0.3.0...HEAD
76-
[v0.3.0]: https://github.com/japaric/cortex-m-semihosting/compare/v0.2.1...v0.3.0
77-
[v0.2.1]: https://github.com/japaric/cortex-m-semihosting/compare/v0.2.0...v0.2.1
78-
[v0.2.0]: https://github.com/japaric/cortex-m-semihosting/compare/v0.1.3...v0.2.0
79-
[v0.1.3]: https://github.com/japaric/cortex-m-semihosting/compare/v0.1.2...v0.1.3
80-
[v0.1.2]: https://github.com/japaric/cortex-m-semihosting/compare/v0.1.1...v0.1.2
81-
[v0.1.1]: https://github.com/japaric/cortex-m-semihosting/compare/v0.1.0...v0.1.1
81+
[Unreleased]: https://github.com/rust-embedded/cortex-m-semihosting/compare/v0.3.1...HEAD
82+
[v0.3.1]: https://github.com/rust-embedded/cortex-m-semihosting/compare/v0.3.0...v0.3.1
83+
[v0.3.0]: https://github.com/rust-embedded/cortex-m-semihosting/compare/v0.2.1...v0.3.0
84+
[v0.2.1]: https://github.com/rust-embedded/cortex-m-semihosting/compare/v0.2.0...v0.2.1
85+
[v0.2.0]: https://github.com/rust-embedded/cortex-m-semihosting/compare/v0.1.3...v0.2.0
86+
[v0.1.3]: https://github.com/rust-embedded/cortex-m-semihosting/compare/v0.1.2...v0.1.3
87+
[v0.1.2]: https://github.com/rust-embedded/cortex-m-semihosting/compare/v0.1.1...v0.1.2
88+
[v0.1.1]: https://github.com/rust-embedded/cortex-m-semihosting/compare/v0.1.0...v0.1.1

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ keywords = ["semihosting", "arm", "cortex-m"]
66
license = "MIT OR Apache-2.0"
77
name = "cortex-m-semihosting"
88
repository = "https://github.com/japaric/cortex-m-semihosting"
9-
version = "0.3.0"
9+
version = "0.3.1"
1010

1111
[features]
1212
inline-asm = []

src/lib.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,6 @@
2323
//! Semihosting operations are *very* slow. Like, each WRITE operation can take hundreds of
2424
//! milliseconds.
2525
//!
26-
//! # Requirements
27-
//!
28-
//! Compiling this crate on stable or beta requires `arm-none-eabi-gcc` to be installed and
29-
//! available in `PATH`.
30-
//!
3126
//! # Example
3227
//!
3328
//! ## Using `hio::HStdout`
@@ -138,9 +133,6 @@
138133
//! When this feature is disabled semihosting is implemented using FFI calls into an external
139134
//! assembly file and compiling this crate works on stable and beta.
140135
//!
141-
//! Apart from the toolchain requirement, enabling `inline-asm` removes the requirement of having
142-
//! `arm-none-eabi-gcc` installed on the host.
143-
//!
144136
//! # Reference
145137
//!
146138
//! For documentation about the semihosting operations, check:

0 commit comments

Comments
 (0)