Skip to content

Commit 68704b1

Browse files
committed
Bumping MSRV to 1.76.0
1 parent f0ddc66 commit 68704b1

File tree

10 files changed

+21
-9
lines changed

10 files changed

+21
-9
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ on:
3838
required: false
3939

4040
env:
41-
rust_version: 1.75.0
41+
rust_version: 1.76.0
4242
rust_toolchain_components: clippy,rustfmt
4343
ENCRYPTED_DOCKER_PASSWORD: ${{ secrets.ENCRYPTED_DOCKER_PASSWORD }}
4444
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.75.0
13+
rust_version: 1.76.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.75.0
11+
rust_version: 1.76.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.75.0
13+
rust_version: 1.76.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
@@ -45,7 +45,7 @@ jobs:
4545
- name: Set up Rust
4646
uses: dtolnay/rust-toolchain@master
4747
with:
48-
toolchain: 1.75.0
48+
toolchain: 1.76.0
4949
- name: Delete old SDK
5050
run: |
5151
- name: Generate a fresh SDK

CHANGELOG.next.toml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,15 @@ message = "Updating the documentation for the `app_name` method on `ConfigLoader
5353
references = ["smithy-rs#3645"]
5454
meta = { "breaking" = false, "bug" = false, "tada" = false }
5555
author = "landonxjames"
56+
57+
[[aws-sdk-rust]]
58+
message = "Update MSRV to `1.76.0`"
59+
references = ["smithy-rs#3653"]
60+
meta = { "breaking" = true, "tada" = true, "bug" = false }
61+
author = "landonxjames"
62+
63+
[[smithy-rs]]
64+
message = "Update MSRV to `1.76.0`"
65+
references = ["smithy-rs#3653"]
66+
meta = { "breaking" = true, "tada" = true, "bug" = false, "target" = "all" }
67+
author = "landonxjames"

codegen-core/src/main/kotlin/software/amazon/smithy/rust/codegen/core/testutil/Rust.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ object TestWorkspace {
118118
// help rust select the right version when we run cargo test
119119
// TODO(https://github.com/smithy-lang/smithy-rs/issues/2048): load this from the msrv property using a
120120
// method as we do for runtime crate versions
121-
"[toolchain]\nchannel = \"1.75.0\"\n",
121+
"[toolchain]\nchannel = \"1.76.0\"\n",
122122
)
123123
// ensure there at least an empty lib.rs file to avoid broken crates
124124
newProject.resolve("src").mkdirs()

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55

66
# Rust MSRV (entered into the generated README)
7-
rust.msrv=1.75.0
7+
rust.msrv=1.76.0
88

99
# To enable debug, swap out the two lines below.
1010
# When changing this value, be sure to run `./gradlew --stop` to kill the Gradle daemon.

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.75.0"
2+
channel = "1.76.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.75.0
9+
ARG rust_stable_version=1.76.0
1010
ARG rust_nightly_version=nightly-2024-02-07
1111

1212
FROM ${base_image} AS bare_base_image

0 commit comments

Comments
 (0)