Skip to content

Commit ea327d1

Browse files
committed
Update docs.
1 parent 24896c0 commit ea327d1

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313

1414
Changes since [`v0.3.3`](#033---2023-02-02).
1515

16-
### Changed
16+
### BREAKING
1717

1818
- Upgraded `ufmt` from `0.1` to `0.2`
1919
- Upgraded MSRV to `nightly-2023-08-08`

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ compiler (as of mid 2022, inline assembly for AVR is still 'experimental').
2222

2323
## MSRV
2424

25-
This crate works with a Rust `nightly-2022-05-10` compiler.
26-
All versions `0.3.x` will adhere to work with `nightly-2022-05-10`.
25+
This crate works with a Rust `nightly-2023-08-08` compiler.
26+
All versions `0.4.x` will adhere to work with `nightly-2023-08-08`.
2727
Other Rust compiler version (particularly newer ones) might also work,
2828
but due to the use of experimental compiler features it is possible that
2929
some future Rust compiler version will fail to work.
3030

31-
Future versions such as `0.4.x` might required a newer Rust compiler
31+
Future versions such as `0.5.x` might required a newer Rust compiler
3232
version.
3333

3434

@@ -88,7 +88,7 @@ use avr_progmem::raw::read_byte;
8888
use core::ptr::addr_of;
8989

9090
// This `static` must never be directly dereferenced/accessed!
91-
// So a `let data: u8 = P_BYTE;` is **undefined behavior**!!!
91+
// So a `let data: u8 = P_BYTE;` ⚠️ is **undefined behavior**!!!
9292
/// Static byte stored in progmem!
9393
#[link_section = ".progmem.data"]
9494
static P_BYTE: u8 = b'A';

src/lib.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@
3838
//!
3939
//! ## MSRV
4040
//!
41-
//! This crate works with a Rust `nightly-2022-05-10` compiler.
42-
//! All versions `0.3.x` will adhere to work with `nightly-2022-05-10`.
41+
//! This crate works with a Rust `nightly-2023-08-08` compiler.
42+
//! All versions `0.4.x` will adhere to work with `nightly-2023-08-08`.
4343
//! Other Rust compiler version (particularly newer ones) might also work,
4444
//! but due to the use of experimental compiler features it is possible that
4545
//! some future Rust compiler version will fail to work.
4646
//!
47-
//! Future versions such as `0.4.x` might required a newer Rust compiler
47+
//! Future versions such as `0.5.x` might required a newer Rust compiler
4848
//! version.
4949
//!
5050
//!

0 commit comments

Comments
 (0)