Updated changelog, use released version of rtic-core

This commit is contained in:
Emil Fresk 2020-11-14 16:16:45 +01:00
parent d079949139
commit 9cbe639ebf
2 changed files with 5 additions and 2 deletions

View file

@ -5,6 +5,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased] ## [Unreleased]
### Added
- Support for multi-locks, see `examples/multilock.rs` for syntax.
## [v0.6.0-alpha.0] - 2020-11-14 ## [v0.6.0-alpha.0] - 2020-11-14
### Added ### Added

View file

@ -57,8 +57,7 @@ required-features = ["__v7"]
[dependencies] [dependencies]
cortex-m = "0.6.2" cortex-m = "0.6.2"
cortex-m-rtic-macros = { path = "macros", version = "0.6.0-alpha.0" } cortex-m-rtic-macros = { path = "macros", version = "0.6.0-alpha.0" }
# rtic-core = "0.3.0" rtic-core = "0.3.1"
rtic-core = { git = "https://github.com/rtic-rs/rtic-core.git", branch = "multilock", version = "0.3.1" }
cortex-m-rt = "0.6.9" cortex-m-rt = "0.6.9"
heapless = "0.5.0" heapless = "0.5.0"
bare-metal = "1.0.0" bare-metal = "1.0.0"