| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-04-16 | check task priority at compile time | Jorge Aparicio | |
| before we were checking the priority at runtime. The compile time error message when the priority is too high is kind of awful though. | |||
| 2019-02-26 | refactor: make `binds` harder to misuse | Jorge Aparicio | |
| 2019-02-26 | `binds` can only appear once in the argument list | Jorge Aparicio | |
| 2019-02-26 | add `binds` argument to the `interrupt` and `exception` attributes | Jorge Aparicio | |
| 2019-02-23 | reject duplicate arguments in #[interrupt] and #[exception] | Jorge Aparicio | |
| This program was being accepted: ``` rust #[task( capacity = 1, capacity = 2, priority = 1, priority = 2, )] fn foo() {} ``` now it will trigger a compiler error | |||
| 2019-02-16 | Make builds reproducible | Hugo van der Wijst | |
| This is done by using `BTreeMap`s and `BTreeSet`s to get deterministic ordering. Also updated the CI job to check reproducibility of all examples. | |||
| 2019-02-12 | accept `init: fn() -> init::LateResources` | Jorge Aparicio | |
| 2018-12-16 | move macros crate to the 2018 edition | Jorge Aparicio | |
| 2018-12-16 | properly handle `#[cfg]` (conditional compilation) on tasks | Jorge Aparicio | |
| 2018-12-16 | properly handle #[cfg] (conditional compilation) on resources | Jorge Aparicio | |
| 2018-12-15 | codegen/statics: forward #[cfg] attributes | Jorge Aparicio | |
| fixes #110 | |||
| 2018-11-03 | v0.4.0 | Jorge Aparicio | |
| closes #32 closes #33 | |||
