Skip to content

Commit 245a6d5

Browse files
committed
v0.3.0
1 parent d14589a commit 245a6d5

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [v0.3.0] - 2017-07-07
11+
1012
### Changed
1113

1214
- [breaking-change] Renamed `StackedRergisters` to `ExceptionFrame` to better
@@ -18,6 +20,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1820
- [breaking-change] Renamed `Exception::current` to `Exception::active` and
1921
changed the signature to return `None` when no exception is being serviced.
2022

23+
- Moved bits non specific to the Cortex-M architecture into the [`bare-metal`]
24+
crate with the goal of sharing code between this crate and crates tailored for
25+
other (microcontroller) architectures.
26+
27+
[`bare-metal`]: https://crates.io/crates/bare-metal
28+
2129
### Removed
2230

2331
- [breaking-change] The `ctxt` module along with the exception "tokens" in the
@@ -337,7 +345,8 @@ fn main() {
337345
- Functions to get the vector table
338346
- Wrappers over miscellaneous instructions like `bkpt`
339347

340-
[Unreleased]: https://github.com/japaric/cortex-m/compare/v0.2.11...HEAD
348+
[Unreleased]: https://github.com/japaric/cortex-m/compare/v0.3.0...HEAD
349+
[v0.3.0]: https://github.com/japaric/cortex-m/compare/v0.2.11...v0.3.0
341350
[v0.2.11]: https://github.com/japaric/cortex-m/compare/v0.2.10...v0.2.11
342351
[v0.2.10]: https://github.com/japaric/cortex-m/compare/v0.2.9...v0.2.10
343352
[v0.2.9]: https://github.com/japaric/cortex-m/compare/v0.2.8...v0.2.9

src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
//! - Access to core peripherals like NVIC, SCB and SysTick.
66
//! - Access to core registers like CONTROL, MSP and PSR.
77
//! - Interrupt manipulation mechanisms
8-
//! - Data structures like the vector table
98
//! - Safe wrappers around assembly instructions like `bkpt`
109
1110
#![deny(missing_docs)]

0 commit comments

Comments
 (0)