diff options
author | 2018-01-25 21:47:04 +0100 | |
---|---|---|
committer | 2018-01-25 21:47:04 +0100 | |
commit | ef9ac4f63c3ca5637a93a2cad2e3f53a7fe614c2 (patch) | |
tree | 41965b3c641dace207392fbc06c1783a048f6533 | |
parent | e7618ca3ee577ca7929f7296320d4ad7a8a57a97 (diff) | |
download | cortex-m-ef9ac4f63c3ca5637a93a2cad2e3f53a7fe614c2.tar.gz cortex-m-ef9ac4f63c3ca5637a93a2cad2e3f53a7fe614c2.tar.zst cortex-m-ef9ac4f63c3ca5637a93a2cad2e3f53a7fe614c2.zip |
v0.4.3v0.4.3
-rw-r--r-- | CHANGELOG.md | 10 | ||||
-rw-r--r-- | Cargo.toml | 2 |
2 files changed, 10 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 1100d63..0711395 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.4.3] - 2018-01-25 + +### Changed + +- The initial value of a `singleton!` no longer needs to be evaluable in const context; it can now + be a value computed at runtime, or even a capture of some other local variable. + ## [v0.4.2] - 2018-01-17 ### Fixed @@ -391,7 +398,8 @@ fn main() { - Functions to get the vector table - Wrappers over miscellaneous instructions like `bkpt` -[Unreleased]: https://github.com/japaric/cortex-m/compare/v0.4.2...HEAD +[Unreleased]: https://github.com/japaric/cortex-m/compare/v0.4.3...HEAD +[v0.4.3]: https://github.com/japaric/cortex-m/compare/v0.4.2...v0.4.3 [v0.4.2]: https://github.com/japaric/cortex-m/compare/v0.4.1...v0.4.2 [v0.4.1]: https://github.com/japaric/cortex-m/compare/v0.4.0...v0.4.1 [v0.4.0]: https://github.com/japaric/cortex-m/compare/v0.3.1...v0.4.0 @@ -7,7 +7,7 @@ keywords = ["arm", "cortex-m", "register", "peripheral"] license = "MIT OR Apache-2.0" name = "cortex-m" repository = "https://github.com/japaric/cortex-m" -version = "0.4.2" +version = "0.4.3" [dependencies] aligned = "0.1.1" |