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

v0.3.1 #21

Merged
merged 1 commit into from
Aug 27, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 14 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [v0.3.1] - 2018-08-27

### Changed

- This crate no longer depends on `arm-none-eabi-gcc`.

## [v0.3.0] - 2018-05-10

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

- Initial release

[Unreleased]: https://github.com/japaric/cortex-m-semihosting/compare/v0.3.0...HEAD
[v0.3.0]: https://github.com/japaric/cortex-m-semihosting/compare/v0.2.1...v0.3.0
[v0.2.1]: https://github.com/japaric/cortex-m-semihosting/compare/v0.2.0...v0.2.1
[v0.2.0]: https://github.com/japaric/cortex-m-semihosting/compare/v0.1.3...v0.2.0
[v0.1.3]: https://github.com/japaric/cortex-m-semihosting/compare/v0.1.2...v0.1.3
[v0.1.2]: https://github.com/japaric/cortex-m-semihosting/compare/v0.1.1...v0.1.2
[v0.1.1]: https://github.com/japaric/cortex-m-semihosting/compare/v0.1.0...v0.1.1
[Unreleased]: https://github.com/rust-embedded/cortex-m-semihosting/compare/v0.3.1...HEAD
[v0.3.1]: https://github.com/rust-embedded/cortex-m-semihosting/compare/v0.3.0...v0.3.1
[v0.3.0]: https://github.com/rust-embedded/cortex-m-semihosting/compare/v0.2.1...v0.3.0
[v0.2.1]: https://github.com/rust-embedded/cortex-m-semihosting/compare/v0.2.0...v0.2.1
[v0.2.0]: https://github.com/rust-embedded/cortex-m-semihosting/compare/v0.1.3...v0.2.0
[v0.1.3]: https://github.com/rust-embedded/cortex-m-semihosting/compare/v0.1.2...v0.1.3
[v0.1.2]: https://github.com/rust-embedded/cortex-m-semihosting/compare/v0.1.1...v0.1.2
[v0.1.1]: https://github.com/rust-embedded/cortex-m-semihosting/compare/v0.1.0...v0.1.1
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ keywords = ["semihosting", "arm", "cortex-m"]
license = "MIT OR Apache-2.0"
name = "cortex-m-semihosting"
repository = "https://github.com/japaric/cortex-m-semihosting"
version = "0.3.0"
version = "0.3.1"

[features]
inline-asm = []
8 changes: 0 additions & 8 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,6 @@
//! Semihosting operations are *very* slow. Like, each WRITE operation can take hundreds of
//! milliseconds.
//!
//! # Requirements
//!
//! Compiling this crate on stable or beta requires `arm-none-eabi-gcc` to be installed and
//! available in `PATH`.
//!
//! # Example
//!
//! ## Using `hio::HStdout`
Expand Down Expand Up @@ -138,9 +133,6 @@
//! When this feature is disabled semihosting is implemented using FFI calls into an external
//! assembly file and compiling this crate works on stable and beta.
//!
//! Apart from the toolchain requirement, enabling `inline-asm` removes the requirement of having
//! `arm-none-eabi-gcc` installed on the host.
//!
//! # Reference
//!
//! For documentation about the semihosting operations, check:
Expand Down