summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Emil Fresk <emil.fresk@gmail.com> 2021-08-19 08:30:27 +0200
committerGravatar Emil Fresk <emil.fresk@gmail.com> 2021-08-19 08:30:27 +0200
commitb4e54df856dd6729de7751d32f42870b0b6a077f (patch)
tree6741d8beea00929472f770bfa3985004baa03645
parent90f963e3bb244a4411ede0b99c81601a0179832f (diff)
downloadrtic-0.5.8.tar.gz
rtic-0.5.8.tar.zst
rtic-0.5.8.zip
Prepare v0.5.8v0.5.8
-rw-r--r--.github/workflows/build.yml12
-rw-r--r--CHANGELOG.md5
-rw-r--r--README.md4
-rw-r--r--ci/script.sh2
-rw-r--r--src/lib.rs2
5 files changed, 15 insertions, 10 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 9cf93e6b..eec71ff9 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -45,7 +45,7 @@ jobs:
- x86_64-unknown-linux-gnu
toolchain:
- stable
- - 1.36.0
+ - 1.38.0
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -88,7 +88,7 @@ jobs:
override: true
- name: Disable optimisation profiles
- if: matrix.toolchain == '1.36.0'
+ if: matrix.toolchain == '1.38.0'
run: sed -i '/^\[profile.*build-override]$/,/^$/{/^#/!{/^$/!d}}' Cargo.toml
- name: cargo check
@@ -324,7 +324,7 @@ jobs:
- x86_64-unknown-linux-gnu
toolchain:
- stable
- - 1.36.0
+ - 1.38.0
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -367,7 +367,7 @@ jobs:
override: true
- name: Disable optimisation profiles
- if: matrix.toolchain == '1.36.0'
+ if: matrix.toolchain == '1.38.0'
run: sed -i '/^\[profile.*build-override]$/,/^$/{/^#/!{/^$/!d}}' Cargo.toml
- name: cargo check
@@ -416,7 +416,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
- toolchain: 1.36.0
+ toolchain: 1.38.0
target: thumbv7m-none-eabi
override: true
@@ -468,7 +468,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
- toolchain: 1.36.0
+ toolchain: 1.38.0
target: thumbv6m-none-eabi
override: true
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c3d0ed00..cc07454a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
+## [v0.5.8] - 2021-08-19
+
+- Feature flag was added to support `cortex-m v0.7.x`
+- MSRV raised to 1.38.
+
## [v0.5.7] - 2021-07-05
- Backport: "you must enable the rt feature" compile time detection
diff --git a/README.md b/README.md
index 45bb9de8..22560915 100644
--- a/README.md
+++ b/README.md
@@ -7,7 +7,7 @@ Formerly known as Real-Time For the Masses.
![crates.io](https://img.shields.io/crates/v/cortex-m-rtic)
![docs.rs](https://docs.rs/cortex-m-rtic/badge.svg)
![book](https://img.shields.io/badge/web-rtic.rs-red.svg?style=flat&label=book&colorB=d33847)
-![rustc](https://img.shields.io/badge/rustc-1.36+-lightgray.svg)
+![rustc](https://img.shields.io/badge/rustc-1.38+-lightgray.svg)
## Features
@@ -46,7 +46,7 @@ Formerly known as Real-Time For the Masses.
## Requirements
-- Rust 1.36.0+
+- Rust 1.38.0+
- Applications must be written using the 2018 edition.
diff --git a/ci/script.sh b/ci/script.sh
index 6c099097..7748af89 100644
--- a/ci/script.sh
+++ b/ci/script.sh
@@ -50,7 +50,7 @@ main() {
fi
if [ $TRAVIS_RUST_VERSION = nightly ]; then
- # Tests where required MSRV > 1.36
+ # Tests where required MSRV > 1.38
#local exs=(
#)
#for ex in ${exs[@]}; do
diff --git a/src/lib.rs b/src/lib.rs
index da9216d2..42735383 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -17,7 +17,7 @@
//!
//! # Minimum Supported Rust Version (MSRV)
//!
-//! This crate is guaranteed to compile on stable Rust 1.36 (2018 edition) and up. It *might*
+//! This crate is guaranteed to compile on stable Rust 1.38 (2018 edition) and up. It *might*
//! compile on older versions but that may change in any new patch release.
//!
//! # Semantic Versioning