Skip to content

Commit d8f7bd6

Browse files
author
Henrik Tjäder
committed
Changelog: Add breaking change from PR61
1 parent 8a0ad83 commit d8f7bd6

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,18 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1313
- `#[task_local]`, there must be only one task, similar to a task local
1414
resource, but (optionally) set-up by init. This is similar to move.
1515

16-
- `peripherals` is now enabled (*true*) by default, you no longer need to give `#[app(..., peripherals = true))`. This is the common case, and if forgotten it results in an error which may be confusing to the user.
17-
18-
- Improved ergonomics allowing separation of task signatures to actual implementation in extern block `extern "Rust" { #[task(..)] fn t(..); }`.
16+
- `peripherals` is now enabled (*true*) by default, you no longer need to give
17+
`#[app(..., peripherals = true))`. This is the common case, and if forgotten
18+
it results in an error which may be confusing to the user.
1919

20+
- Improved ergonomics allowing separation of task signatures to actual
21+
implementation in extern block `extern "Rust" { #[task(..)] fn t(..); }`.
2022

2123
### Changed
2224

25+
- [breaking-change] Remove `Location`, changes analysis struct contents:
26+
`shared_resource_locations` -> `shared_resources`. Same for local.
27+
2328
- [breaking-change] "Resource handling take 2" implemented
2429

2530
- [breaking-change] Move of dispatchers (interrupts) from `extern` to app arguments.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ keywords = []
1111
license = "MIT OR Apache-2.0"
1212
name = "rtic-syntax"
1313
repository = "https://github.com/rtic-rs/rtic-syntax"
14-
version = "0.5.0-rc.1"
14+
version = "0.5.0-rc.2"
1515

1616
[dependencies]
1717
indexmap = "1.0.2"

0 commit comments

Comments
 (0)