mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
Prepare for v0.5.2 release
This commit is contained in:
parent
81da47c2f7
commit
1be9d0067b
2 changed files with 11 additions and 2 deletions
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -5,6 +5,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [v0.5.2] - 2020-06-11
|
||||
|
||||
- Using safe `DWT` interface
|
||||
- Using GitHub Actions now
|
||||
- Improved CI speed
|
||||
- Now `main` can be used as function name
|
||||
- Fixed so one can `cfg`-out resources when using a newer compiler
|
||||
|
||||
## [v0.5.1] - 2019-11-19
|
||||
- Fixed arithmetic wrapping bug in src/cyccntr.rs
|
||||
elapsed and duration could cause an internal overflow trap
|
||||
|
@ -305,7 +313,8 @@ Yanked due to a soundness issue in `init`; the issue has been mostly fixed in v0
|
|||
|
||||
- Initial release
|
||||
|
||||
[Unreleased]: https://github.com/rtfm-rs/cortex-m-rtfm/compare/v0.5.1...HEAD
|
||||
[Unreleased]: https://github.com/rtfm-rs/cortex-m-rtfm/compare/v0.5.2...HEAD
|
||||
[v0.5.2]: https://github.com/rtfm-rs/cortex-m-rtfm/compare/v0.5.1...v0.5.2
|
||||
[v0.5.1]: https://github.com/rtfm-rs/cortex-m-rtfm/compare/v0.5.0...v0.5.1
|
||||
[v0.5.0]: https://github.com/rtfm-rs/cortex-m-rtfm/compare/v0.4.3...v0.5.0
|
||||
[v0.4.3]: https://github.com/rtfm-rs/cortex-m-rtfm/compare/v0.4.2...v0.4.3
|
||||
|
|
|
@ -13,7 +13,7 @@ license = "MIT OR Apache-2.0"
|
|||
name = "cortex-m-rtfm"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/rtfm-rs/cortex-m-rtfm"
|
||||
version = "0.5.1"
|
||||
version = "0.5.2"
|
||||
|
||||
[lib]
|
||||
name = "rtfm"
|
||||
|
|
Loading…
Reference in a new issue