Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ae503ee8fb | ||
|
|
4a398df058 | ||
|
|
efb84ccf53 | ||
|
|
a462ab027d | ||
|
|
6da25bced8 |
@@ -5,6 +5,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [v0.3.2] - 2018-06-19
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Bumped the panic-semihosting dependency to fix some examples when compiling with latest nightly.
|
||||||
|
|
||||||
## [v0.3.1] - 2018-05-13
|
## [v0.3.1] - 2018-05-13
|
||||||
|
|
||||||
- Document the standard `main` interface issue in the troubleshooting guide.
|
- Document the standard `main` interface issue in the troubleshooting guide.
|
||||||
@@ -172,7 +178,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
|
|
||||||
- Initial release
|
- Initial release
|
||||||
|
|
||||||
[Unreleased]: https://github.com/japaric/cortex-m-quickstart/compare/v0.3.1...HEAD
|
[Unreleased]: https://github.com/japaric/cortex-m-quickstart/compare/v0.3.2...HEAD
|
||||||
|
[v0.3.2]: https://github.com/japaric/cortex-m-quickstart/compare/v0.3.1...v0.3.2
|
||||||
[v0.3.1]: https://github.com/japaric/cortex-m-quickstart/compare/v0.3.0...v0.3.1
|
[v0.3.1]: https://github.com/japaric/cortex-m-quickstart/compare/v0.3.0...v0.3.1
|
||||||
[v0.3.0]: https://github.com/japaric/cortex-m-quickstart/compare/v0.2.7...v0.3.0
|
[v0.3.0]: https://github.com/japaric/cortex-m-quickstart/compare/v0.2.7...v0.3.0
|
||||||
[v0.2.7]: https://github.com/japaric/cortex-m-quickstart/compare/v0.2.6...v0.2.7
|
[v0.2.7]: https://github.com/japaric/cortex-m-quickstart/compare/v0.2.6...v0.2.7
|
||||||
|
|||||||
@@ -6,13 +6,13 @@ keywords = ["arm", "cortex-m", "template"]
|
|||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
name = "cortex-m-quickstart"
|
name = "cortex-m-quickstart"
|
||||||
repository = "https://github.com/japaric/cortex-m-quickstart"
|
repository = "https://github.com/japaric/cortex-m-quickstart"
|
||||||
version = "0.3.1"
|
version = "0.3.2"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cortex-m = "0.5.0"
|
cortex-m = "0.5.0"
|
||||||
cortex-m-rt = "0.5.0"
|
cortex-m-rt = "0.5.0"
|
||||||
cortex-m-semihosting = "0.3.0"
|
cortex-m-semihosting = "0.3.0"
|
||||||
panic-semihosting = "0.2.0"
|
panic-semihosting = "0.3.0"
|
||||||
|
|
||||||
# Uncomment for the panic example.
|
# Uncomment for the panic example.
|
||||||
# panic-itm = "0.1.1"
|
# panic-itm = "0.1.1"
|
||||||
|
|||||||
@@ -27,7 +27,7 @@
|
|||||||
//! 2) Clone this crate
|
//! 2) Clone this crate
|
||||||
//!
|
//!
|
||||||
//! ``` text
|
//! ``` text
|
||||||
//! $ git clone cortex-m-quickstart --vers 0.3.0
|
//! $ cargo clone cortex-m-quickstart --vers 0.3.0
|
||||||
//! ```
|
//! ```
|
||||||
//!
|
//!
|
||||||
//! 3) Change the crate name, author and version
|
//! 3) Change the crate name, author and version
|
||||||
|
|||||||
Reference in New Issue
Block a user