aboutsummaryrefslogtreecommitdiff
path: root/book/en/src/by-example/new.md
diff options
context:
space:
mode:
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
```