From 96b3a14547066b2a6b49289b2b3fbac90fb44ac1 Mon Sep 17 00:00:00 2001 From: Isabel Atkinson Date: Tue, 1 Mar 2022 17:19:21 -0500 Subject: [PATCH] RUST-1192 Bump MSRV to 1.49.0 (#584) --- .evergreen/config.yml | 4 ++-- README.md | 4 ++-- src/lib.rs | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.evergreen/config.yml b/.evergreen/config.yml index 943883ae0..b52e1f6de 100644 --- a/.evergreen/config.yml +++ b/.evergreen/config.yml @@ -1279,9 +1279,9 @@ axes: - id: "extra-rust-versions" values: - id: "min" - display_name: "1.48 (minimum supported version)" + display_name: "1.49 (minimum supported version)" variables: - RUST_VERSION: "1.48.0" + RUST_VERSION: "1.49.0" - id: "nightly" display_name: "nightly" variables: diff --git a/README.md b/README.md index f550da2a0..df1108f75 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ This repository contains the officially supported MongoDB Rust driver, a client ## Installation ### Requirements -- Rust 1.48+ +- Rust 1.49+ - MongoDB 3.6+ ### Importing @@ -357,7 +357,7 @@ Commits to master are run automatically on [evergreen](https://evergreen.mongodb ## Minimum supported Rust version (MSRV) -The MSRV for this crate is currently 1.48.0. This will be rarely be increased, and if it ever is, +The MSRV for this crate is currently 1.49.0. This will be rarely be increased, and if it ever is, it will only happen in a minor or major version release. ## License diff --git a/src/lib.rs b/src/lib.rs index 61a65e594..bd4731902 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -8,7 +8,7 @@ //! # Installation //! //! ## Requirements -//! - Rust 1.48+ +//! - Rust 1.49+ //! - MongoDB 3.6+ //! //! ## Importing @@ -282,7 +282,7 @@ //! //! ## Minimum supported Rust version (MSRV) //! -//! The MSRV for this crate is currently 1.48.0. This will be rarely be increased, and if it ever is, +//! The MSRV for this crate is currently 1.49.0. This will be rarely be increased, and if it ever is, //! it will only happen in a minor or major version release. #![warn(missing_docs)]