aboutsummaryrefslogtreecommitdiff
path: root/book/en/src/by-example/new.md
diff options
context:
space:
mode:
authorJorge Aparicio <jorge@japaric.io>2019-04-21 20:25:59 +0200
committerJorge Aparicio <jorge@japaric.io>2019-05-01 20:49:25 +0200
commit3adc9c31f3fd46af7e3a42a5adba7471452f06e1 (patch)
treeabd96443848f086082fc3a1dbf794dba9a0ff501 /book/en/src/by-example/new.md
parentd538f5b17cf0ad482cd803d7fbaada3349d6485e (diff)
update the book
Diffstat (limited to 'book/en/src/by-example/new.md')
-rw-r--r--book/en/src/by-example/new.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/book/en/src/by-example/new.md b/book/en/src/by-example/new.md
index ae49ef2..91b31bb 100644
--- a/book/en/src/by-example/new.md
+++ b/book/en/src/by-example/new.md
@@ -40,7 +40,7 @@ $ rm memory.x build.rs
`timer-queue` feature.
``` console
-$ cargo add cortex-m-rtfm
+$ cargo add cortex-m-rtfm --allow-prerelease
```
4. Write your RTFM application.
@@ -49,7 +49,7 @@ Here I'll use the `init` example from the `cortex-m-rtfm` crate.
``` console
$ curl \
- -L https://github.com/japaric/cortex-m-rtfm/raw/v0.4.0/examples/init.rs \
+ -L https://github.com/japaric/cortex-m-rtfm/raw/v0.5.0-alpha.1/examples/init.rs \
> src/main.rs
```