Skip to content
This repository was archived by the owner on Jan 24, 2022. It is now read-only.

Commit 5caebe7

Browse files
committed
v0.3.5
1 parent d854091 commit 5caebe7

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 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.5] - 2017-07-21
11+
1012
### Fixed
1113

1214
- Remove duplication of default exception handlers. This saves 32 bytes of Flash
@@ -164,7 +166,8 @@ section size addr
164166

165167
Initial release
166168

167-
[Unreleased]: https://github.com/japaric/cortex-m-rt/compare/v0.3.4...HEAD
169+
[Unreleased]: https://github.com/japaric/cortex-m-rt/compare/v0.3.5...HEAD
170+
[v0.3.5]: https://github.com/japaric/cortex-m-rt/compare/v0.3.4...v0.3.5
168171
[v0.3.4]: https://github.com/japaric/cortex-m-rt/compare/v0.3.3...v0.3.4
169172
[v0.3.3]: https://github.com/japaric/cortex-m-rt/compare/v0.3.2...v0.3.3
170173
[v0.3.2]: https://github.com/japaric/cortex-m-rt/compare/v0.3.1...v0.3.2

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ keywords = ["arm", "cortex-m", "runtime", "startup"]
77
license = "MIT OR Apache-2.0"
88
name = "cortex-m-rt"
99
repository = "https://github.com/japaric/cortex-m-rt"
10-
version = "0.3.4"
10+
version = "0.3.5"
1111

1212
[dependencies]
1313
cortex-m = "0.3.0"

src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -398,6 +398,7 @@ PENDSV = DEFAULT_HANDLER
398398
SYS_TICK = DEFAULT_HANDLER
399399
"#);
400400

401+
#[cfg(target_arch = "arm")]
401402
extern "C" {
402403
fn NMI();
403404
fn HARD_FAULT();

0 commit comments

Comments
 (0)