Skip to content

Commit ef9ac4f

Browse files
committed
v0.4.3
1 parent e7618ca commit ef9ac4f

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [v0.4.3] - 2018-01-25
11+
12+
### Changed
13+
14+
- The initial value of a `singleton!` no longer needs to be evaluable in const context; it can now
15+
be a value computed at runtime, or even a capture of some other local variable.
16+
1017
## [v0.4.2] - 2018-01-17
1118

1219
### Fixed
@@ -391,7 +398,8 @@ fn main() {
391398
- Functions to get the vector table
392399
- Wrappers over miscellaneous instructions like `bkpt`
393400

394-
[Unreleased]: https://github.com/japaric/cortex-m/compare/v0.4.2...HEAD
401+
[Unreleased]: https://github.com/japaric/cortex-m/compare/v0.4.3...HEAD
402+
[v0.4.3]: https://github.com/japaric/cortex-m/compare/v0.4.2...v0.4.3
395403
[v0.4.2]: https://github.com/japaric/cortex-m/compare/v0.4.1...v0.4.2
396404
[v0.4.1]: https://github.com/japaric/cortex-m/compare/v0.4.0...v0.4.1
397405
[v0.4.0]: https://github.com/japaric/cortex-m/compare/v0.3.1...v0.4.0

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.4.2"
10+
version = "0.4.3"
1111

1212
[dependencies]
1313
aligned = "0.1.1"

0 commit comments

Comments
 (0)