mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
Merge #162
162: v0.4.2 r=TeXitoi a=japaric this PR prepares a new release r? @korken89 || @TeXitoi Co-authored-by: Jorge Aparicio <jorge@japaric.io>
This commit is contained in:
commit
8da925647e
3 changed files with 48 additions and 4 deletions
46
CHANGELOG.md
46
CHANGELOG.md
|
@ -5,6 +5,49 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [v0.4.2] - 2019-02-27
|
||||
|
||||
### Added
|
||||
|
||||
- `Duration` now has an `as_cycles` method to get the number of clock cycles
|
||||
contained in it.
|
||||
|
||||
- An opt-in "nightly" feature that reduces static memory usage, shortens
|
||||
initialization time and reduces runtime overhead has been added. To use this
|
||||
feature you need a nightly compiler!
|
||||
|
||||
- [RFC 128] has been implemented. The `exception` and `interrupt` have gained a
|
||||
`binds` argument that lets you give the handler an arbitrary name. For
|
||||
example:
|
||||
|
||||
[RFC 128]: https://github.com/japaric/cortex-m-rtfm/issues/128
|
||||
|
||||
``` rust
|
||||
// on v0.4.1 you had to write
|
||||
#[interrupt]
|
||||
fn USART0() { .. }
|
||||
|
||||
// on v0.4.2 you can write
|
||||
#[interrupt(binds = USART0)]
|
||||
fn on_new_frame() { .. }
|
||||
```
|
||||
|
||||
### Changed
|
||||
|
||||
- Builds are now reproducible. `cargo build; cargo clean; cargo build` will
|
||||
produce binaries that are exactly the same (after `objcopy -O ihex`). This
|
||||
wasn't the case before because we used randomly generated identifiers for
|
||||
memory safety but now all the randomness is gone.
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fixed a `non_camel_case_types` warning that showed up when using a recent
|
||||
nightly.
|
||||
|
||||
- Fixed a bug that allowed you to enter the `capacity` and `priority` arguments
|
||||
in the `task` attribute more than once. Now all arguments can only be stated
|
||||
once in the list, as it should be.
|
||||
|
||||
## [v0.4.1] - 2019-02-12
|
||||
|
||||
### Added
|
||||
|
@ -176,7 +219,8 @@ Yanked due to a soundness issue in `init`; the issue has been mostly fixed in v0
|
|||
|
||||
- Initial release
|
||||
|
||||
[Unreleased]: https://github.com/japaric/cortex-m-rtfm/compare/v0.4.1...HEAD
|
||||
[Unreleased]: https://github.com/japaric/cortex-m-rtfm/compare/v0.4.2...HEAD
|
||||
[v0.4.2]: https://github.com/japaric/cortex-m-rtfm/compare/v0.4.1...v0.4.2
|
||||
[v0.4.1]: https://github.com/japaric/cortex-m-rtfm/compare/v0.4.0...v0.4.1
|
||||
[v0.4.0]: https://github.com/japaric/cortex-m-rtfm/compare/v0.3.4...v0.4.0
|
||||
[v0.3.4]: https://github.com/japaric/cortex-m-rtfm/compare/v0.3.3...v0.3.4
|
||||
|
|
|
@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0"
|
|||
name = "cortex-m-rtfm"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/japaric/cortex-m-rtfm"
|
||||
version = "0.4.1"
|
||||
version = "0.4.2"
|
||||
|
||||
[lib]
|
||||
name = "rtfm"
|
||||
|
@ -36,7 +36,7 @@ required-features = ["timer-queue"]
|
|||
[dependencies]
|
||||
cortex-m = "0.5.8"
|
||||
cortex-m-rt = "0.6.7"
|
||||
cortex-m-rtfm-macros = { path = "macros", version = "0.4.1" }
|
||||
cortex-m-rtfm-macros = { path = "macros", version = "0.4.2" }
|
||||
heapless = "0.4.1"
|
||||
owned-singleton = "0.1.0"
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"
|
|||
name = "cortex-m-rtfm-macros"
|
||||
readme = "../README.md"
|
||||
repository = "https://github.com/japaric/cortex-m-rtfm"
|
||||
version = "0.4.1"
|
||||
version = "0.4.2"
|
||||
|
||||
[lib]
|
||||
proc-macro = true
|
||||
|
|
Loading…
Reference in a new issue