diff options
author | 2019-11-01 16:22:08 +0000 | |
---|---|---|
committer | 2019-11-01 16:22:08 +0000 | |
commit | 6e85987c9fe3f3d900f8843a1c3485e2140413ea (patch) | |
tree | 2507550175886a36c4e636c0de3e196be4bd1468 /cortex-m-rt | |
parent | 977e2bc8aae1c13e07a4f60d52b215e0e549bcd4 (diff) | |
parent | dde955d737b328422a2a8feade18da11c3ccb4f7 (diff) | |
download | cortex-m-6e85987c9fe3f3d900f8843a1c3485e2140413ea.tar.gz cortex-m-6e85987c9fe3f3d900f8843a1c3485e2140413ea.tar.zst cortex-m-6e85987c9fe3f3d900f8843a1c3485e2140413ea.zip |
Merge #209
209: Bump cortex-m-rt-macro version to 0.1.6 for release r=korken89 a=therealprof
Closes #206
Signed-off-by: Daniel Egger <daniel@eggers-club.de>
Co-authored-by: Daniel Egger <daniel@eggers-club.de>
Diffstat (limited to 'cortex-m-rt')
-rw-r--r-- | cortex-m-rt/Cargo.toml | 4 | ||||
-rw-r--r-- | cortex-m-rt/macros/Cargo.toml | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/cortex-m-rt/Cargo.toml b/cortex-m-rt/Cargo.toml index 4b5faee..1975ff6 100644 --- a/cortex-m-rt/Cargo.toml +++ b/cortex-m-rt/Cargo.toml @@ -17,7 +17,7 @@ autoexamples = true [dependencies] r0 = "0.2.2" -cortex-m-rt-macros = { path = "macros", version = "0.1.5" } +cortex-m-rt-macros = { path = "macros", version = "0.1" } [dev-dependencies] cortex-m = "0.6" @@ -29,7 +29,7 @@ default-features = false version = "0.5.5" [target.'cfg(not(target_os = "none"))'.dev-dependencies] -compiletest_rs = "0.3.14" +compiletest_rs = "0.3.25" [[example]] name = "device" diff --git a/cortex-m-rt/macros/Cargo.toml b/cortex-m-rt/macros/Cargo.toml index 0875b18..c53ec89 100644 --- a/cortex-m-rt/macros/Cargo.toml +++ b/cortex-m-rt/macros/Cargo.toml @@ -7,7 +7,7 @@ keywords = ["arm", "cortex-m", "runtime", "startup"] license = "MIT OR Apache-2.0" name = "cortex-m-rt-macros" repository = "https://github.com/japaric/cortex-m-rt" -version = "0.1.5" +version = "0.1.6" [lib] proc-macro = true @@ -25,4 +25,4 @@ version = "0.5.5" default-features = false [dev-dependencies] -cortex-m-rt = { path = "..", version = "0.6.0" } +cortex-m-rt = { path = "..", version = "0.6" } |