Skip to content

Commit 37cd9f5

Browse files
authored
Merge pull request #129 from rust-embedded/release
v0.6.4
2 parents e064949 + 4d8dde8 commit 37cd9f5

File tree

3 files changed

+22
-4
lines changed

3 files changed

+22
-4
lines changed

cortex-m-rt/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [v0.6.4] - 2018-09-25
11+
12+
### Changed
13+
14+
- (macros) Improved the error message when any of the attribute is used on the
15+
wrong kind of item.
16+
17+
### Fixed
18+
19+
- (macros) The expansion of the `exception` attribute now uses the `extern "C"`
20+
ABI which is what the hardware expects.
21+
22+
- (macros) `entry` and `exception` now respect the declared unsafety. That is
23+
`#[entry] unsafe main() -> !` won't require `unsafe` blocks to use `unsafe`
24+
API.
25+
1026
## [v0.6.3] - 2018-09-09
1127

1228
### Fixed
@@ -372,7 +388,9 @@ section size addr
372388

373389
Initial release
374390

375-
[Unreleased]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.2...HEAD
391+
[Unreleased]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.4...HEAD
392+
[v0.6.4]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.3...v0.6.4
393+
[v0.6.3]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.2...v0.6.3
376394
[v0.6.2]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.1...v0.6.2
377395
[v0.6.1]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.0...v0.6.1
378396
[v0.6.0]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.5.3...v0.6.0

cortex-m-rt/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ license = "MIT OR Apache-2.0"
88
name = "cortex-m-rt"
99
readme = "README.md"
1010
repository = "https://github.com/rust-embedded/cortex-m-rt"
11-
version = "0.6.3"
11+
version = "0.6.4"
1212

1313
[dependencies]
1414
r0 = "0.2.1"
15-
cortex-m-rt-macros = { path = "macros", version = "0.1.1" }
15+
cortex-m-rt-macros = { path = "macros", version = "0.1.2" }
1616

1717
[dev-dependencies]
1818
cortex-m = "0.5.4"

cortex-m-rt/macros/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-macros"
99
repository = "https://github.com/japaric/cortex-m-rt"
10-
version = "0.1.1"
10+
version = "0.1.2"
1111

1212
[lib]
1313
proc-macro = true

0 commit comments

Comments
 (0)