Skip to content

Commit 0095d3b

Browse files
authored
upgrade MSRV from 1.85 to 1.87 (#1655)
## Which issue does this PR close? - Closes #. ## What changes are included in this PR? MSRV policy, https://github.com/apache/iceberg-rust?tab=readme-ov-file#supported-rust-version Rust release - [1.86](https://releases.rs/docs/1.86.0/), Released on: 3 April, 2025 - [1.87](https://releases.rs/docs/1.87.0/), Released on: 15 May, 2025 - [1.88](https://releases.rs/docs/1.88.0/), Released on: 26 June, 2025 We can bump MSRV to 1.87 Last MSRV update was [4 months ago](https://github.com/apache/iceberg-rust/blame/7362bbdcf72910d95ee88940f229d2eea40b3fa1/Cargo.toml#L38-L39) for the 0.5.0 release ## Are these changes tested?
1 parent 8278563 commit 0095d3b

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ concurrency:
3030
cancel-in-progress: true
3131

3232
env:
33-
rust_msrv: "1.85.0"
33+
rust_msrv: "1.87"
3434

3535
jobs:
3636
check:

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ on:
2727
workflow_dispatch:
2828

2929
env:
30-
rust_msrv: "1.85"
30+
rust_msrv: "1.87"
3131

3232
jobs:
3333
publish:

.github/workflows/release_python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ on:
2525
workflow_dispatch:
2626

2727
env:
28-
rust_msrv: "1.85"
28+
rust_msrv: "1.87"
2929

3030
concurrency:
3131
group: ${{ github.workflow }}-${{ github.event.workflow_run.head_branch }}-${{ github.event_name }}

.github/workflows/release_python_nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ on:
2323
workflow_dispatch: # Allows manual triggering
2424

2525
env:
26-
rust_msrv: "1.85"
26+
rust_msrv: "1.87"
2727

2828
permissions:
2929
contents: read

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ version = "0.6.0"
3636
license = "Apache-2.0"
3737
repository = "https://github.com/apache/iceberg-rust"
3838
# Check the MSRV policy in README.md before changing this
39-
rust-version = "1.85"
39+
rust-version = "1.87"
4040

4141
[workspace.dependencies]
4242
anyhow = "1.0.72"

bindings/python/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
edition = "2024"
2020
homepage = "https://rust.iceberg.apache.org"
2121
name = "pyiceberg_core_rust"
22-
rust-version = "1.85"
22+
rust-version = "1.87"
2323
version = "0.6.0"
2424
# This crate is used to build python bindings, we don't want to publish it
2525
publish = false

0 commit comments

Comments
 (0)