From 41b7a426e755849e9fbccac6ea705f6490cf58c7 Mon Sep 17 00:00:00 2001 From: Martin Algesten Date: Tue, 3 Dec 2024 17:48:50 +0100 Subject: [PATCH] Update readme --- README.md | 7 +++++-- src/lib.rs | 7 +++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 56dade32..4a38cd05 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,11 @@ A simple, safe HTTP client. +> [!NOTE] +> * 2.11.x will remain MSRV 1.67 and we will release version with pinned dependencies +> for as long as it's possible/wanted (please open issue/PR when needed). +> * 2.12.x is MSRV 1.71, and we might bump it further (in minor versions). + > [!NOTE] > ureq version 2.11.0 was forced to bump MSRV from 1.63 -> 1.67. The problem is that the > `time` crate 0.3.20, the last 1.63 compatible version, stopped compiling with Rust @@ -29,8 +34,6 @@ A simple, safe HTTP client. > To release a 2.x version that is possible to compile on the latest Rust we were > forced to bump MSRV. - - Ureq's first priority is being easy for you to use. It's great for anyone who wants a low-overhead HTTP client that just gets the job done. Works very well with HTTP APIs. Its features include cookies, JSON, HTTP proxies, diff --git a/src/lib.rs b/src/lib.rs index 87dbe341..0e3adde6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -37,14 +37,17 @@ //! A simple, safe HTTP client. //! //! > [!NOTE] +//! > * 2.11.x will remain MSRV 1.67 and we will release version with pinned dependencies +//! > for as long as it's possible/wanted (please open issue/PR when needed). +//! > * 2.12.x is MSRV 1.71, and we might bump it further (in minor versions). +//! +//! > [!NOTE] //! > ureq version 2.11.0 was forced to bump MSRV from 1.63 -> 1.67. The problem is that the //! > `time` crate 0.3.20, the last 1.63 compatible version, stopped compiling with Rust //! > [1.80 and above](https://github.com/algesten/ureq/pull/878#issuecomment-2503176155). //! > To release a 2.x version that is possible to compile on the latest Rust we were //! > forced to bump MSRV. //! -//! -//! //! Ureq's first priority is being easy for you to use. It's great for //! anyone who wants a low-overhead HTTP client that just gets the job done. Works //! very well with HTTP APIs. Its features include cookies, JSON, HTTP proxies,