File tree 2 files changed +9
-2
lines changed
2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -7,10 +7,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ v0.7.5] - 2022-05-15
11
+
10
12
### Deprecated
11
13
- the ` ptr() ` function on all peripherals register blocks in favor of
12
14
the associated constant ` PTR ` (#386 ).
13
15
16
+ ### Changed
17
+
18
+ - The ` inline-asm ` feature no longer requires a nightly Rust compiler, but
19
+ does require Rust 1.59 or above.
20
+
14
21
## [ v0.7.4] - 2021-12-31
15
22
16
23
### Added
Original file line number Diff line number Diff line change 22
22
//! - Some of the `register` API only becomes available only when `inline-asm` is enabled. Check the
23
23
//! API docs for details.
24
24
//!
25
- //! The disadvantage is that `inline-asm` requires a nightly toolchain.
25
+ //! The disadvantage is that `inline-asm` requires a Rust version at least 1.59 to use the `asm!()`
26
+ //! macro. In the future 0.8 and above versions of `cortex-m`, this feature will always be enabled.
26
27
//!
27
28
//! ## `cm7-r0p1`
28
29
//!
55
56
//! This crate is guaranteed to compile on stable Rust 1.38 and up. It *might*
56
57
//! compile with older versions but that may change in any new patch release.
57
58
58
- #![ cfg_attr( feature = "inline-asm" , feature( asm) ) ]
59
59
#![ deny( missing_docs) ]
60
60
#![ no_std]
61
61
#![ allow( clippy:: identity_op) ]
You can’t perform that action at this time.
0 commit comments