From 686cc9b9953387355ad639a10c5986078d0048fa Mon Sep 17 00:00:00 2001 From: Emil Fresk Date: Sun, 15 Sep 2019 22:00:52 +0200 Subject: [PATCH 1/4] One more place updated --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 502cbc6a2c..959c9b7bc6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -10,7 +10,7 @@ //! //! The user level documentation can be found [here]. //! -//! [here]: https://japaric.github.io/rtfm5/book/en/ +//! [here]: https://rtfm.rs //! //! Don't forget to check the documentation of the `#[app]` attribute (listed under the reexports //! section), which is the main component of the framework. From c818a310587e928a1be92c7ce22399eb9b195da5 Mon Sep 17 00:00:00 2001 From: Emil Fresk Date: Sun, 15 Sep 2019 22:08:28 +0200 Subject: [PATCH 2/4] Book fix --- book/en/src/preface.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/en/src/preface.md b/book/en/src/preface.md index 15aaea5ce7..3e8361b824 100644 --- a/book/en/src/preface.md +++ b/book/en/src/preface.md @@ -5,7 +5,7 @@ # Preface This book contains user level documentation for the Real Time For the Masses -(RTFM) framework. The API reference can be found [here](../api/rtfm/index.html). +(RTFM) framework. The API reference can be found [here](../../api/rtfm/index.html). There is a translation of this book in [Russian]. From 0f5894cafe3ebab6597174dbfcca0df38bb6da83 Mon Sep 17 00:00:00 2001 From: Emil Fresk Date: Sun, 15 Sep 2019 22:30:41 +0200 Subject: [PATCH 3/4] Fixed install script --- ci/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/install.sh b/ci/install.sh index aa7012050e..3fb5f83325 100644 --- a/ci/install.sh +++ b/ci/install.sh @@ -2,9 +2,9 @@ set -euxo pipefail main() { # these are not needed for doc builds - if [ $TRAVIS_BRANCH != master ] || [ $TRAVIS_PULL_REQUEST != false ]; then + if [ $TRAVIS_BRANCH != master ] || [ $TRAVIS_PULL_REQUEST != false ]; then if [ $TARGET = x86_64-unknown-linux-gnu ]; then - ( cd .. && cargo install microamp-tools --version 0.1.0-alpha.3 -f ) + ( cd .. && cargo install microamp-tools --version 0.1.0-alpha.2 -f ) rustup target add thumbv6m-none-eabi thumbv7m-none-eabi fi From 6938ef6187a4f034931da62d10354c413268bf6c Mon Sep 17 00:00:00 2001 From: Emil Fresk Date: Sun, 15 Sep 2019 22:31:31 +0200 Subject: [PATCH 4/4] Revert "Fixed install script" This reverts commit 0f5894cafe3ebab6597174dbfcca0df38bb6da83. --- ci/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/install.sh b/ci/install.sh index 3fb5f83325..aa7012050e 100644 --- a/ci/install.sh +++ b/ci/install.sh @@ -2,9 +2,9 @@ set -euxo pipefail main() { # these are not needed for doc builds - if [ $TRAVIS_BRANCH != master ] || [ $TRAVIS_PULL_REQUEST != false ]; then + if [ $TRAVIS_BRANCH != master ] || [ $TRAVIS_PULL_REQUEST != false ]; then if [ $TARGET = x86_64-unknown-linux-gnu ]; then - ( cd .. && cargo install microamp-tools --version 0.1.0-alpha.2 -f ) + ( cd .. && cargo install microamp-tools --version 0.1.0-alpha.3 -f ) rustup target add thumbv6m-none-eabi thumbv7m-none-eabi fi