jonas-schievink / rubble

(going to be a) BLE stack for embedded Rust
BSD Zero Clause License
396 stars 56 forks source link

Update cortex-m-rtfm requirement from 0.4.3 to 0.5.0 #92

Closed dependabot-preview[bot] closed 4 years ago

dependabot-preview[bot] commented 4 years ago

Updates the requirements on cortex-m-rtfm to permit the latest version.

Changelog *Sourced from [cortex-m-rtfm's changelog](https://github.com/rtfm-rs/cortex-m-rtfm/blob/master/CHANGELOG.md).* > ## v0.5.0 - 2019-11-14 > > ### Added > > - Experimental support for homogeneous and heterogeneous multi-core > microcontrollers has been added. Support is gated behind the `homogeneous` and > `heterogeneous` Cargo features. > > ### Changed > > - [breaking-change][] [RFC 155] "explicit `Context` parameter" has been > implemented. > > [RFC 155]: [rtfm-rs/cortex-m-rtfm#155](https://github-redirect.dependabot.com/rtfm-rs/cortex-m-rtfm/issues/155) > > - [breaking-change][] [RFC 147] "all functions must be safe" has been > implemented. > > [RFC 147]: [rtfm-rs/cortex-m-rtfm#147](https://github-redirect.dependabot.com/rtfm-rs/cortex-m-rtfm/issues/147) > > - All the queues internally used by the framework now use `AtomicU8` indices > instead of `AtomicUsize`; this reduces the static memory used by the > framework. > > - [breaking-change][] when the `capacity` argument is omitted, the capacity of > the task is assumed to be `1`. Before, a reasonable (but hard to predict) > capacity was computed based on the number of `spawn` references the task had. > > - [breaking-change][] resources that are appear as exclusive references > (`&mut-`) no longer appear behind the `Exclusive` newtype. > > - [breaking-change][] the `timer-queue` Cargo feature has been removed. The > `schedule` API can be used without enabling any Cargo feature. > > - [breaking-change][] when the `schedule` API is used the type of > `init::Context.core` changes from `cortex_m::Peripherals` to > `rtfm::Peripherals`. The fields of `rtfm::Peripherals` do not change when > Cargo features are enabled. > > - [breaking-change][] the monotonic timer used to implement the `schedule` API > is now user configurable via the `#[app(monotonic = ..)]` argument. IMPORTANT: > it is now the responsibility of the application author to configure and > initialize the chosen `monotonic` timer during the `#[init]` phase. > > - [breaking-change][] the `peripherals` field is not include in `init::Context` > by default. One must opt-in using the `#[app(peripherals = ..)]` argument. > > - [breaking-change][] the `#[exception]` and `#[interrupt]` attributes have been > removed. Hardware tasks are now declared using the `#[task(binds = ..)]` > attribute. > ... (truncated)
Commits - [`6b0a2df`](https://github.com/rtfm-rs/cortex-m-rtfm/commit/6b0a2df41c024fa8e7da07f3b42a80f19840432e) Merge [#272](https://github-redirect.dependabot.com/rtfm-rs/cortex-m-rtfm/issues/272) - [`4fcb6ab`](https://github.com/rtfm-rs/cortex-m-rtfm/commit/4fcb6ab7cc0a719a815b4038d48071553cc4daa5) v0.5.0 final release - [`e28294b`](https://github.com/rtfm-rs/cortex-m-rtfm/commit/e28294b22088298f94197fdbdea39ac816920514) Merge [#271](https://github-redirect.dependabot.com/rtfm-rs/cortex-m-rtfm/issues/271) - [`2441b7e`](https://github.com/rtfm-rs/cortex-m-rtfm/commit/2441b7e38978f3fa8d555ee85f2632176e0a2c86) Minor docs update to monotonic - [`85463ed`](https://github.com/rtfm-rs/cortex-m-rtfm/commit/85463ed6c33629866f3977d2093ab3424a5a1b6e) Merge [#268](https://github-redirect.dependabot.com/rtfm-rs/cortex-m-rtfm/issues/268) [#270](https://github-redirect.dependabot.com/rtfm-rs/cortex-m-rtfm/issues/270) - [`76e2345`](https://github.com/rtfm-rs/cortex-m-rtfm/commit/76e234599f6da0b7ee21b98da80201a3984ee323) Added struct de-structure-ing example in tips & tricks - [`e9a8394`](https://github.com/rtfm-rs/cortex-m-rtfm/commit/e9a83947bc919487d8566ec0f7348bbe0d9ae8af) fix bash comparison - [`da9c6a7`](https://github.com/rtfm-rs/cortex-m-rtfm/commit/da9c6a714eaa9420694dc6377c6e0167fe08f5d4) run cfail tests only when rustc --version == $MSRV - [`31b392f`](https://github.com/rtfm-rs/cortex-m-rtfm/commit/31b392fe3a6961596a0bd4e1bb24c0da2a9b7b42) CI: replace compiletest-rs with trybuild - [`72e84cb`](https://github.com/rtfm-rs/cortex-m-rtfm/commit/72e84cb297ef06d9496d18402bc8ea2d88cd1665) Merge [#266](https://github-redirect.dependabot.com/rtfm-rs/cortex-m-rtfm/issues/266) - Additional commits viewable in [compare view](https://github.com/rtfm-rs/cortex-m-rtfm/compare/v0.4.3...v0.5.0)


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired)
dependabot-preview[bot] commented 4 years ago

Looks like cortex-m-rtfm is up-to-date now, so this is no longer needed.