diff --git a/bors.toml b/.github/bors.toml similarity index 100% rename from bors.toml rename to .github/bors.toml diff --git a/.travis.yml b/.travis.yml index f7257c93a1..1d6f3abbf8 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 ff6c12796a..5f33a4af8e 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 diff --git a/Cargo.toml b/Cargo.toml index 15f7394572..d505f20906 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/README.md b/README.md index 240e2f8fa7..335440b249 100644 --- a/README.md +++ b/README.md @@ -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