mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-26 05:29:38 +01:00
v0.2.1
This commit is contained in:
parent
6160548153
commit
a43c8a4d57
3 changed files with 12 additions and 3 deletions
|
@ -5,6 +5,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [v0.2.1] - 2017-07-29
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Link to `app!` macro documentation.
|
||||||
|
|
||||||
## [v0.2.0] - 2017-07-29
|
## [v0.2.0] - 2017-07-29
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -42,6 +48,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
- Initial release
|
- Initial release
|
||||||
|
|
||||||
[Unreleased]: https://github.com/japaric/cortex-m-rtfm/compare/v0.2.0...HEAD
|
[Unreleased]: https://github.com/japaric/cortex-m-rtfm/compare/v0.2.1...HEAD
|
||||||
|
[v0.2.1]: https://github.com/japaric/cortex-m-rtfm/compare/v0.2.0...v0.2.1
|
||||||
[v0.2.0]: https://github.com/japaric/cortex-m-rtfm/compare/v0.1.1...v0.2.0
|
[v0.2.0]: https://github.com/japaric/cortex-m-rtfm/compare/v0.1.1...v0.2.0
|
||||||
[v0.1.1]: https://github.com/japaric/cortex-m-rtfm/compare/v0.1.0...v0.1.1
|
[v0.1.1]: https://github.com/japaric/cortex-m-rtfm/compare/v0.1.0...v0.1.1
|
||||||
|
|
|
@ -10,7 +10,7 @@ keywords = ["arm", "cortex-m"]
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
name = "cortex-m-rtfm"
|
name = "cortex-m-rtfm"
|
||||||
repository = "https://github.com/japaric/cortex-m-rtfm"
|
repository = "https://github.com/japaric/cortex-m-rtfm"
|
||||||
version = "0.2.0"
|
version = "0.2.1"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cortex-m = "0.3.1"
|
cortex-m = "0.3.1"
|
||||||
|
|
|
@ -46,7 +46,9 @@
|
||||||
//!
|
//!
|
||||||
//! # `app!`
|
//! # `app!`
|
||||||
//!
|
//!
|
||||||
//! The `app!` macro is documented [here](../cortex_m_rtfm_macros/fn.app.html).
|
//! The `app!` macro is documented [here].
|
||||||
|
//!
|
||||||
|
//! [here]: https://docs.rs/cortex-m-rtfm-macros/0.2.0/cortex_m_rtfm_macros/fn.app.html
|
||||||
//!
|
//!
|
||||||
//! # Examples
|
//! # Examples
|
||||||
//!
|
//!
|
||||||
|
|
Loading…
Reference in a new issue