Skip to content

Commit 09a5089

Browse files
authored
Merge pull request nrf-rs#120 from nrf-rs/bump-msrv
Bump MSRV to 1.71 😞. Also fixed some typos in the README.md while at it
2 parents 3ecbbde + fbcc7ff commit 09a5089

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
# Note this needs to be new enough to build the examples as well as
2929
# the library itself.
3030
- name: MSRV
31-
rust: 1.62.0
31+
rust: 1.71.0
3232

3333
name: "build (${{ matrix.name || matrix.rust }})"
3434

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1111
- Update examples to use RTIC 1.0
1212
- Add ADC for micro:bit V1
1313
- Add analog example
14-
- Increase minimum supported Rust version to 1.62
14+
- Increase minimum supported Rust version to 1.71
1515
- Added support for the real time counters RTC1 and RTC2
1616
- Add common types and structs for the edge connector pads and pins
1717
- Add common ADC types and initialization for ADC and SAADC

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# microbit
22

3-
_microbit_ contains everything required to get started using Rust to create firmwares for the fabulous
3+
_microbit_ contains everything required getting started using Rust to create firmwares for the fabulous
44
[BBC micro:bit](https://microbit.org) microcontroller board. This little board has everything and a kitchen sink built-in,
55
even a capable debugging interface.
66

@@ -47,14 +47,14 @@ run one of the commands below.
4747
> cargo run --release --manifest-path ./examples/display-blocking/Cargo.toml --features v2 --target thumbv7em-none-eabihf
4848
```
4949

50-
You should see a lot of build output, the orange LED on the back of the micro:bit should flash quickly and
50+
You should see a lot of build output, the orange LED on the back of the micro:bit should flash quickly, and
5151
a message should appear on the LED display.
5252

53-
Congratulations! You've flashed your first rust program onto your micro:bit!
53+
Congratulations! You've flashed your first Rust program onto your micro:bit!
5454

5555
## Further reading
5656

57-
A guide to embedded development with Rust on the _microbit_ using this crate can be found in the [MicroRust book](https://droogmic.github.io/microrust/).
57+
A guide to embedded development with Rust on the _micro:bit_ using this crate can be found in the [MicroRust book](https://droogmic.github.io/microrust/).
5858

5959
Other useful resources:
6060
- [micro:bit developer community](https://tech.microbit.org)

0 commit comments

Comments
 (0)