From 44387425ba18fc194e3cac7a8461835b8ca91592 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Fri, 22 Nov 2019 11:05:37 +0100 Subject: [PATCH] Bump MSRV --- .travis.yml | 6 +++--- CHANGELOG.md | 1 + README.md | 2 +- src/lib.rs | 2 +- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 612041c2..8b188c77 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ language: "rust" cache: "cargo" rust: - - 1.34.2 + - 1.36.0 - stable - beta - nightly @@ -13,7 +13,7 @@ jobs: before_script: - rustup component add rustfmt - | - if [ "$TRAVIS_RUST_VERSION" != "1.34.2" ]; then + if [ "$TRAVIS_RUST_VERSION" != "1.36.0" ]; then rustup component add clippy fi - | @@ -28,7 +28,7 @@ script: fi - cargo fmt -- --check - | - if [ "$TRAVIS_RUST_VERSION" != "1.34.2" ]; then + if [ "$TRAVIS_RUST_VERSION" != "1.36.0" ]; then cargo clippy --all-targets --all-features -- -D warnings fi - cargo build --verbose diff --git a/CHANGELOG.md b/CHANGELOG.md index 45d4b6d5..ba1b9925 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ Breaking changes: * Move `r0::directory::get_public_rooms::PublicRoomsChunk` to `r0::directory::PublicRoomsChunk` +* Our Minimum Supported Rust Version is now 1.36.0 Improvements: diff --git a/README.md b/README.md index 90c31607..7baea26c 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ These types can be shared by client and server code. ## Minimum Rust version -ruma-client-api requires Rust 1.34.2 or later. +ruma-client-api requires Rust 1.36.0 or later. ## Status diff --git a/src/lib.rs b/src/lib.rs index fc875b94..2bf1f422 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -7,7 +7,7 @@ missing_debug_implementations, missing_docs )] -// Since we support Rust 1.34.2, we can't apply this suggestion yet +// Since we support Rust 1.36.0, we can't apply this suggestion yet #![allow(clippy::use_self)] pub mod r0;