Skip to content

Commit dfd0349

Browse files
authored
Merge pull request #105 from rust-embedded/release
v0.5.4
2 parents c667480 + 7511032 commit dfd0349

File tree

2 files changed

+47
-30
lines changed

2 files changed

+47
-30
lines changed

CHANGELOG.md

+46-29
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8+
## [Unreleased]
9+
10+
## [v0.5.4] - 2018-08-11
11+
12+
### Added
13+
14+
- A method to trigger a system reset. See `SCB.system_reset`.
15+
16+
### Fixed
17+
18+
- Made the VTOR register (see peripheral::SCB) available on `thumbv6m-none-eabi`. This register is
19+
present on Cortex-M0+, but not on Cortex-M0.
20+
21+
- Linking with LLD by marking all external assembly functions as `.thumb_func`. See
22+
https://bugs.llvm.org/show_bug.cgi?id=38435 for details.
23+
824
## [v0.5.3] - 2018-08-02
925

1026
### Fixed
@@ -467,32 +483,33 @@ fn main() {
467483
- Functions to get the vector table
468484
- Wrappers over miscellaneous instructions like `bkpt`
469485

470-
[Unreleased]: https://github.com/japaric/cortex-m/compare/v0.5.3...HEAD
471-
[v0.5.3]: https://github.com/japaric/cortex-m/compare/v0.5.2...v0.5.3
472-
[v0.5.2]: https://github.com/japaric/cortex-m/compare/v0.5.1...v0.5.2
473-
[v0.5.1]: https://github.com/japaric/cortex-m/compare/v0.5.0...v0.5.1
474-
[v0.5.0]: https://github.com/japaric/cortex-m/compare/v0.4.3...v0.5.0
475-
[v0.4.3]: https://github.com/japaric/cortex-m/compare/v0.4.2...v0.4.3
476-
[v0.4.2]: https://github.com/japaric/cortex-m/compare/v0.4.1...v0.4.2
477-
[v0.4.1]: https://github.com/japaric/cortex-m/compare/v0.4.0...v0.4.1
478-
[v0.4.0]: https://github.com/japaric/cortex-m/compare/v0.3.1...v0.4.0
479-
[v0.3.1]: https://github.com/japaric/cortex-m/compare/v0.3.0...v0.3.1
480-
[v0.3.0]: https://github.com/japaric/cortex-m/compare/v0.2.11...v0.3.0
481-
[v0.2.11]: https://github.com/japaric/cortex-m/compare/v0.2.10...v0.2.11
482-
[v0.2.10]: https://github.com/japaric/cortex-m/compare/v0.2.9...v0.2.10
483-
[v0.2.9]: https://github.com/japaric/cortex-m/compare/v0.2.8...v0.2.9
484-
[v0.2.8]: https://github.com/japaric/cortex-m/compare/v0.2.7...v0.2.8
485-
[v0.2.7]: https://github.com/japaric/cortex-m/compare/v0.2.6...v0.2.7
486-
[v0.2.6]: https://github.com/japaric/cortex-m/compare/v0.2.5...v0.2.6
487-
[v0.2.5]: https://github.com/japaric/cortex-m/compare/v0.2.4...v0.2.5
488-
[v0.2.4]: https://github.com/japaric/cortex-m/compare/v0.2.3...v0.2.4
489-
[v0.2.3]: https://github.com/japaric/cortex-m/compare/v0.2.2...v0.2.3
490-
[v0.2.2]: https://github.com/japaric/cortex-m/compare/v0.2.1...v0.2.2
491-
[v0.2.1]: https://github.com/japaric/cortex-m/compare/v0.2.0...v0.2.1
492-
[v0.2.0]: https://github.com/japaric/cortex-m/compare/v0.1.6...v0.2.0
493-
[v0.1.6]: https://github.com/japaric/cortex-m/compare/v0.1.5...v0.1.6
494-
[v0.1.5]: https://github.com/japaric/cortex-m/compare/v0.1.4...v0.1.5
495-
[v0.1.4]: https://github.com/japaric/cortex-m/compare/v0.1.3...v0.1.4
496-
[v0.1.3]: https://github.com/japaric/cortex-m/compare/v0.1.2...v0.1.3
497-
[v0.1.2]: https://github.com/japaric/cortex-m/compare/v0.1.1...v0.1.2
498-
[v0.1.1]: https://github.com/japaric/cortex-m/compare/v0.1.0...v0.1.1
486+
[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/v0.5.4...HEAD
487+
[v0.5.4]: https://github.com/rust-embedded/cortex-m/compare/v0.5.3...v0.5.4
488+
[v0.5.3]: https://github.com/rust-embedded/cortex-m/compare/v0.5.2...v0.5.3
489+
[v0.5.2]: https://github.com/rust-embedded/cortex-m/compare/v0.5.1...v0.5.2
490+
[v0.5.1]: https://github.com/rust-embedded/cortex-m/compare/v0.5.0...v0.5.1
491+
[v0.5.0]: https://github.com/rust-embedded/cortex-m/compare/v0.4.3...v0.5.0
492+
[v0.4.3]: https://github.com/rust-embedded/cortex-m/compare/v0.4.2...v0.4.3
493+
[v0.4.2]: https://github.com/rust-embedded/cortex-m/compare/v0.4.1...v0.4.2
494+
[v0.4.1]: https://github.com/rust-embedded/cortex-m/compare/v0.4.0...v0.4.1
495+
[v0.4.0]: https://github.com/rust-embedded/cortex-m/compare/v0.3.1...v0.4.0
496+
[v0.3.1]: https://github.com/rust-embedded/cortex-m/compare/v0.3.0...v0.3.1
497+
[v0.3.0]: https://github.com/rust-embedded/cortex-m/compare/v0.2.11...v0.3.0
498+
[v0.2.11]: https://github.com/rust-embedded/cortex-m/compare/v0.2.10...v0.2.11
499+
[v0.2.10]: https://github.com/rust-embedded/cortex-m/compare/v0.2.9...v0.2.10
500+
[v0.2.9]: https://github.com/rust-embedded/cortex-m/compare/v0.2.8...v0.2.9
501+
[v0.2.8]: https://github.com/rust-embedded/cortex-m/compare/v0.2.7...v0.2.8
502+
[v0.2.7]: https://github.com/rust-embedded/cortex-m/compare/v0.2.6...v0.2.7
503+
[v0.2.6]: https://github.com/rust-embedded/cortex-m/compare/v0.2.5...v0.2.6
504+
[v0.2.5]: https://github.com/rust-embedded/cortex-m/compare/v0.2.4...v0.2.5
505+
[v0.2.4]: https://github.com/rust-embedded/cortex-m/compare/v0.2.3...v0.2.4
506+
[v0.2.3]: https://github.com/rust-embedded/cortex-m/compare/v0.2.2...v0.2.3
507+
[v0.2.2]: https://github.com/rust-embedded/cortex-m/compare/v0.2.1...v0.2.2
508+
[v0.2.1]: https://github.com/rust-embedded/cortex-m/compare/v0.2.0...v0.2.1
509+
[v0.2.0]: https://github.com/rust-embedded/cortex-m/compare/v0.1.6...v0.2.0
510+
[v0.1.6]: https://github.com/rust-embedded/cortex-m/compare/v0.1.5...v0.1.6
511+
[v0.1.5]: https://github.com/rust-embedded/cortex-m/compare/v0.1.4...v0.1.5
512+
[v0.1.4]: https://github.com/rust-embedded/cortex-m/compare/v0.1.3...v0.1.4
513+
[v0.1.3]: https://github.com/rust-embedded/cortex-m/compare/v0.1.2...v0.1.3
514+
[v0.1.2]: https://github.com/rust-embedded/cortex-m/compare/v0.1.1...v0.1.2
515+
[v0.1.1]: https://github.com/rust-embedded/cortex-m/compare/v0.1.0...v0.1.1

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ keywords = ["arm", "cortex-m", "register", "peripheral"]
77
license = "MIT OR Apache-2.0"
88
name = "cortex-m"
99
repository = "https://github.com/japaric/cortex-m"
10-
version = "0.5.3"
10+
version = "0.5.4"
1111

1212
[build-dependencies]
1313
cc = "1.0.10"

0 commit comments

Comments
 (0)