Skip to content

Commit e6b9d2e

Browse files
authored
chore: bump solar + MSRV (#96)
bumped MSRV to 1.76 as it was necessary to prevent clippy errors. didn't update to 1.88 because of the readme msg stating that this would only be done +6months after release.
1 parent c8093cc commit e6b9d2e

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,18 @@ jobs:
2626
fail-fast: false
2727
matrix:
2828
os: ["ubuntu-latest"]
29-
rust: ["stable", "1.65"] # MSRV
29+
rust: ["stable", "1.76"] # MSRV
3030
steps:
3131
- uses: actions/checkout@v4
3232
- uses: dtolnay/rust-toolchain@stable
3333
- uses: Swatinem/rust-cache@v2
3434
# Only run tests on latest stable and above
3535
- name: build
36-
if: ${{ matrix.rust == '1.65' }} # MSRV
36+
if: ${{ matrix.rust == '1.76' }} # MSRV
3737
run: cargo build --workspace
3838
# Don't use cargo-nextest since all the tests have to be run sequentially
3939
- name: test
40-
if: ${{ matrix.rust != '1.65' }} # MSRV
40+
if: ${{ matrix.rust != '1.76' }} # MSRV
4141
run: cargo test --workspace
4242

4343
wasm:

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ resolver = "2"
88
[workspace.package]
99
authors = ["Foundry Maintainers"]
1010
version = "0.19.1"
11-
rust-version = "1.70"
11+
rust-version = "1.76"
1212
readme = "README.md"
1313
license = "MIT OR Apache-2.0"
1414
repository = "https://github.com/foundry-rs/block-explorers"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ When updating this, also update:
2929

3030
We will keep a rolling MSRV (minimum supported rust version) policy of **at
3131
least** 6 months. When increasing the MSRV, the new Rust version must have been
32-
released at least six months ago. The current MSRV is 1.65.0.
32+
released at least six months ago. The current MSRV is 1.76.0.
3333

3434
Note that the MSRV is not increased automatically, and only as part of a minor
3535
release.
@@ -57,4 +57,4 @@ Licensed under either of <a href="LICENSE-APACHE">Apache License, Version
5757
Unless you explicitly state otherwise, any contribution intentionally submitted
5858
for inclusion in these crates by you, as defined in the Apache-2.0 license,
5959
shall be dual licensed as above, without any additional terms or conditions.
60-
</sub>
60+
</sub>

clippy.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
msrv = "1.65"
1+
msrv = "1.76"

crates/block-explorers/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ thiserror = "1.0"
3737
tracing = "0.1.37"
3838
semver = "1.0"
3939

40-
foundry-compilers = { version = "0.17.0", optional = true }
40+
foundry-compilers = { version = "0.18.0", optional = true }
4141

4242
[dev-dependencies]
4343
tempfile = "3.8"

crates/block-explorers/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ When updating this, also update:
4343

4444
Foundry will keep a rolling MSRV (minimum supported rust version) policy of **at
4545
least** 6 months. When increasing the MSRV, the new Rust version must have been
46-
released at least six months ago. The current MSRV is 1.65.0.
46+
released at least six months ago. The current MSRV is 1.76.0.
4747

4848
Note that the MSRV is not increased automatically, and only as part of a minor
4949
release.

0 commit comments

Comments
 (0)