From 855dee498cc82fca203f4d1bbdb2c267b24ba0a7 Mon Sep 17 00:00:00 2001 From: zerosnacks Date: Mon, 2 Jun 2025 14:57:47 +0200 Subject: [PATCH] update MSRV policy, bump to 1.87 in clippy.toml --- README.md | 7 +++---- clippy.toml | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 4ad5fae3e..7ed247552 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ # Foundry Compilers + | [Docs](https://docs.rs/foundry-compilers/latest/foundry_compilers/) | Originally part of [`ethers-rs`] as `ethers-solc`, Foundry Compilers is the compilation backend for [Foundry](https://github.com/foundry-rs/foundry). @@ -24,9 +25,7 @@ When updating this, also update: - .github/workflows/ci.yml --> -Foundry Compilers will keep a rolling MSRV (minimum supported rust version) policy of **at -least** 6 months. When increasing the MSRV, the new Rust version must have been -released at least six months ago. The current MSRV is 1.86.0. +The current MSRV (minimum supported rust version) is 1.87. Note that the MSRV is not increased automatically, and only as part of a minor release. @@ -46,7 +45,7 @@ To install, simply add `foundry-compilers` to your cargo dependencies. ```toml [dependencies] -foundry-compilers = "0.10.1" +foundry-compilers = "" ``` Example usage: diff --git a/clippy.toml b/clippy.toml index 80fcb9d20..d946daec3 100644 --- a/clippy.toml +++ b/clippy.toml @@ -1 +1 @@ -msrv = "1.86" +msrv = "1.87"