diff options
author | 2018-05-14 17:05:12 +0200 | |
---|---|---|
committer | 2018-05-14 17:05:12 +0200 | |
commit | c259cf9522b36b65b91055b03600bb10afc86930 (patch) | |
tree | d29855c0b0c2465aaa054af22e61f718f0107be2 | |
parent | e37000683e79f19d8a0629fd87d53960adbd4e9d (diff) | |
download | cortex-m-c259cf9522b36b65b91055b03600bb10afc86930.tar.gz cortex-m-c259cf9522b36b65b91055b03600bb10afc86930.tar.zst cortex-m-c259cf9522b36b65b91055b03600bb10afc86930.zip |
v0.5.1
-rw-r--r-- | cortex-m-rt/CHANGELOG.md | 7 | ||||
-rw-r--r-- | cortex-m-rt/Cargo.toml | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/cortex-m-rt/CHANGELOG.md b/cortex-m-rt/CHANGELOG.md index 850b4e4..16958e0 100644 --- a/cortex-m-rt/CHANGELOG.md +++ b/cortex-m-rt/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.5.1] - 2018-05-14 + +### Fixed + +- A recompilation problem where this `cortex-m-rt` would be recompiled every time `cargo build` is + invoked. + ## [v0.5.0] - 2018-05-12 ### Added diff --git a/cortex-m-rt/Cargo.toml b/cortex-m-rt/Cargo.toml index 460917b..c9d3331 100644 --- a/cortex-m-rt/Cargo.toml +++ b/cortex-m-rt/Cargo.toml @@ -7,7 +7,7 @@ keywords = ["arm", "cortex-m", "runtime", "startup"] license = "MIT OR Apache-2.0" name = "cortex-m-rt" repository = "https://github.com/japaric/cortex-m-rt" -version = "0.5.0" +version = "0.5.1" [build-dependencies] cc = "1.0.10" |