diff options
-rw-r--r-- | .github/bors.toml (renamed from bors.toml) | 0 | ||||
-rw-r--r-- | .travis.yml | 4 | ||||
-rw-r--r-- | CHANGELOG.md | 9 | ||||
-rw-r--r-- | Cargo.toml | 4 | ||||
-rw-r--r-- | README.md | 2 |
5 files changed, 15 insertions, 4 deletions
diff --git a/bors.toml b/.github/bors.toml index 5ccee21e..5ccee21e 100644 --- a/bors.toml +++ b/.github/bors.toml diff --git a/.travis.yml b/.travis.yml index f7257c93..1d6f3abb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,15 +7,19 @@ matrix: - env: TARGET=thumbv6m-none-eabi rust: nightly + if: branch != master - env: TARGET=thumbv7m-none-eabi rust: nightly + if: branch != master - env: TARGET=thumbv7em-none-eabi rust: nightly + if: branch != master - env: TARGET=thumbv7em-none-eabihf rust: nightly + if: branch != master before_install: set -e diff --git a/CHANGELOG.md b/CHANGELOG.md index ff6c1279..5f33a4af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.3.4] - 2018-08-27 + +### Changed + +- The documentation link to point to GH pages. + ## [v0.3.3] - 2018-08-24 ### Fixed @@ -100,7 +106,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Initial release -[Unreleased]: https://github.com/japaric/cortex-m-rtfm/compare/v0.3.3...HEAD +[Unreleased]: https://github.com/japaric/cortex-m-rtfm/compare/v0.3.4...HEAD +[v0.3.4]: https://github.com/japaric/cortex-m-rtfm/compare/v0.3.3...v0.3.4 [v0.3.3]: https://github.com/japaric/cortex-m-rtfm/compare/v0.3.2...v0.3.3 [v0.3.2]: https://github.com/japaric/cortex-m-rtfm/compare/v0.3.1...v0.3.2 [v0.3.1]: https://github.com/japaric/cortex-m-rtfm/compare/v0.3.0...v0.3.1 @@ -5,12 +5,12 @@ authors = [ ] categories = ["concurrency", "embedded", "no-std"] description = "Real Time For the Masses (RTFM) framework for ARM Cortex-M microcontrollers" -documentation = "https://docs.rs/cortex-m-rtfm" +documentation = "https://japaric.github.io/cortex-m-rtfm/cortex_m_rtfm/" keywords = ["arm", "cortex-m"] license = "MIT OR Apache-2.0" name = "cortex-m-rtfm" repository = "https://github.com/japaric/cortex-m-rtfm" -version = "0.3.3" +version = "0.3.4" [dependencies] cortex-m = "0.4.0" @@ -5,7 +5,7 @@ > Real Time For the Masses (RTFM) framework for ARM Cortex-M microcontrollers -# [Documentation](https://docs.rs/cortex-m-rtfm) +# [Documentation](https://japaric.github.io/cortex-m-rtfm/cortex_m_rtfm/) # License |