Skip to content

Commit 2546c1c

Browse files
committed
Bump MSRV to 1.85
1 parent fef8f12 commit 2546c1c

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ on:
3333
required: false
3434

3535
env:
36-
rust_version: 1.82.0
36+
rust_version: 1.85.0
3737
rust_toolchain_components: clippy,rustfmt
3838
ENCRYPTED_DOCKER_PASSWORD: ${{ secrets.ENCRYPTED_DOCKER_PASSWORD }}
3939
DOCKER_LOGIN_TOKEN_PASSPHRASE: ${{ secrets.DOCKER_LOGIN_TOKEN_PASSPHRASE }}

.github/workflows/claim-crate-names.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ concurrency:
1010
cancel-in-progress: true
1111

1212
env:
13-
rust_version: 1.82.0
13+
rust_version: 1.85.0
1414

1515
name: Claim unpublished crate names on crates.io
1616
run-name: ${{ github.workflow }}

.github/workflows/github-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
name: Update GitHub Pages
99

1010
env:
11-
rust_version: 1.82.0
11+
rust_version: 1.85.0
1212

1313
# Allow only one doc pages build to run at a time for the entire smithy-rs repo
1414
concurrency:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ concurrency:
1010
cancel-in-progress: true
1111

1212
env:
13-
rust_version: 1.82.0
13+
rust_version: 1.85.0
1414

1515
name: Release smithy-rs
1616
on:

.github/workflows/update-sdk-next.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
- name: Set up Rust
4747
uses: dtolnay/rust-toolchain@master
4848
with:
49-
toolchain: 1.82.0
49+
toolchain: 1.85.0
5050
- name: Delete old SDK
5151
run: |
5252
- name: Generate a fresh SDK

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# SPDX-License-Identifier: Apache-2.0
44
#
55
# Rust MSRV (entered into the generated README)
6-
rust.msrv=1.82.0
6+
rust.msrv=1.85.0
77
# To enable debug, swap out the two lines below.
88
# When changing this value, be sure to run `./gradlew --stop` to kill the Gradle daemon.
99
# org.gradle.jvmargs=-Xmx1024M -agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=localhost:5006

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[toolchain]
2-
channel = "1.82.0"
2+
channel = "1.85.0"

tools/ci-build/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# This is the base Docker build image used by CI
77

88
ARG base_image=public.ecr.aws/amazonlinux/amazonlinux:2023
9-
ARG rust_stable_version=1.82.0
9+
ARG rust_stable_version=1.85.0
1010
ARG rust_nightly_version=nightly-2025-05-04
1111

1212
FROM ${base_image} AS bare_base_image

0 commit comments

Comments
 (0)