diff options
author | 2019-11-15 00:28:33 +0000 | |
---|---|---|
committer | 2019-11-15 00:28:33 +0000 | |
commit | 725d5e1aa9d0276783765dcabe5430f03ea13dd5 (patch) | |
tree | 476446813e3b20e659fcaf83a7f63397f98d36fc | |
parent | dc8115b5abc3f3de8aaa666ef770a27680e03842 (diff) | |
parent | 73d5fa31c224aaedfac5c3d81b3013fc6e45619b (diff) | |
download | rtic-725d5e1aa9d0276783765dcabe5430f03ea13dd5.tar.gz rtic-725d5e1aa9d0276783765dcabe5430f03ea13dd5.tar.zst rtic-725d5e1aa9d0276783765dcabe5430f03ea13dd5.zip |
Merge #274
274: remove references to 'beta' from the docs r=perlindgren a=japaric
Co-authored-by: Jorge Aparicio <jorge@japaric.io>
Diffstat (limited to '')
-rw-r--r-- | book/en/src/by-example/new.md | 2 | ||||
-rw-r--r-- | book/en/src/migration.md | 2 | ||||
-rw-r--r-- | book/en/src/preface.md | 3 |
3 files changed, 2 insertions, 5 deletions
diff --git a/book/en/src/by-example/new.md b/book/en/src/by-example/new.md index 4f132e70..e4f7fd93 100644 --- a/book/en/src/by-example/new.md +++ b/book/en/src/by-example/new.md @@ -48,7 +48,7 @@ Here I'll use the `init` example from the `cortex-m-rtfm` crate. ``` console $ curl \ - -L https://github.com/rtfm-rs/cortex-m-rtfm/raw/v0.5.0-beta.1/examples/init.rs \ + -L https://github.com/rtfm-rs/cortex-m-rtfm/raw/v0.5.0/examples/init.rs \ > src/main.rs ``` diff --git a/book/en/src/migration.md b/book/en/src/migration.md index a71773ee..a014c069 100644 --- a/book/en/src/migration.md +++ b/book/en/src/migration.md @@ -15,7 +15,7 @@ First, the version of the `cortex-m-rtfm` dependency needs to be updated to version = "0.4.3" # into this -version = "0.5.0-beta.1" +version = "0.5.0" # and remove this Cargo feature features = ["timer-queue"] diff --git a/book/en/src/preface.md b/book/en/src/preface.md index b2f4980f..e6e7e1d6 100644 --- a/book/en/src/preface.md +++ b/book/en/src/preface.md @@ -14,9 +14,6 @@ There is a translation of this book in [Russian]. This is the documentation of v0.5.x of RTFM; for the documentation of version v0.4.x go [here](/0.4). -**HEADS UP** This is a **beta** pre-release; there may be breaking changes in -the API and semantics before a proper release is made. - {{#include ../../../README.md:5:44}} {{#include ../../../README.md:50:}} |