Skip to content

Commit 9eb3a7b

Browse files
committed
chore(deps): upgrade rp2040-pac to ^0.4
<https://github.com/rp-rs/rp2040-pac/blob/v0.4.0/CHANGELOG.md#040-cratesio-github> There are a number of public functions that take types from `rp2040-pac` (hence a breaking change), but they are all gated by the `semver-exempt` feature.
1 parent e6ac73f commit 9eb3a7b

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/basic_rp_pico/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ r3_kernel = { workspace = true, features = ["system_time"] }
1717
r3 = { workspace = true, features = ["sync"] }
1818

1919
rp2040-boot2 = { version = "0.2.0" }
20-
rp2040-pac = { version = "0.3.0" }
20+
rp2040-pac = { version = "0.4.0" }
2121
cortex-m-rt = { version = "0.6.12", features = ["device"] }

examples/smp_rp_pico/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ r3 = { workspace = true, features = ["sync"] }
1818

1919
rp2040-boot2 = { version = "0.2.0" }
2020
cortex-m-rt = { version = "0.6.12", features = ["device"] }
21-
rp2040-pac = { version = "0.3.0" }
21+
rp2040-pac = { version = "0.4.0" }
2222
cortex-m = { version = "0.7.3", features = ["inline-asm"] }

src/r3_port_arm_m_test_driver/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ cortex-m-semihosting = { version = "0.5.0", optional = true }
4747
panic-semihosting = { version = "0.6.0", optional = true }
4848
panic-rtt-target = { version = "0.1.2", optional = true, features = ["cortex-m"] }
4949
cortex-m-rt = { version = "0.6.12", optional = true, features = ["device"] }
50-
rp2040-pac = { version = "0.3.0", optional = true }
50+
rp2040-pac = { version = "0.4.0", optional = true }
5151
rtt-target = { version = "0.3.0", optional = true, features = ["cortex-m"] }
5252
cortex-m = { version = "0.7.3", optional = true, features = ["inline-asm"] }
5353
log = { version = "0.4.8", optional = true }

src/r3_support_rp2040/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
- **Breaking (semver-exempt):** Upgrade `rp2040-pac ^0.3` to `^0.4`
11+
1012
### Changed
1113

1214
- **Breaking (semver-exempt):** Change the target compiler version to `nightly-2022-08-11`

src/r3_support_rp2040/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ r3 = { workspace = true }
3131
embedded-hal = { version = "0.2.4", optional = true }
3232
usbd-serial = { version = "0.1.1", optional = true }
3333
inline_dyn = { version = "0.2.0", optional = true }
34-
rp2040-pac = { version = "0.3.0" }
34+
rp2040-pac = { version = "0.4.0" }
3535
usb-device = { version = "0.2.7", optional = true }
3636
cortex-m = { version = "0.7.3", optional = true }
3737
vcell = { version = "0.1.2", optional = true }

0 commit comments

Comments
 (0)