Skip to content

Commit a6a3cf1

Browse files
author
Zelda Hessler
authored
Merge branch 'main' into zhessler/request-compression
2 parents 7bf58a4 + 181b48b commit a6a3cf1

File tree

11 files changed

+22
-10
lines changed

11 files changed

+22
-10
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
@@ -54,6 +54,18 @@ references = ["smithy-rs#3645"]
5454
meta = { "breaking" = false, "bug" = false, "tada" = false }
5555
author = "landonxjames"
5656

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"
68+
5769
[[smithy-rs]]
5870
message = """
5971
Compression is now supported for operations modeled with the `@requestCompression` trait.

aws/rust-runtime/aws-config/src/environment/credentials.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ impl EnvironmentVariableCredentialsProvider {
3939
.get("AWS_SESSION_TOKEN")
4040
.ok()
4141
.and_then(|token| match token.trim() {
42-
s if s.is_empty() => None,
42+
"" => None,
4343
s => Some(s.to_string()),
4444
});
4545
Ok(Credentials::new(

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
@@ -119,7 +119,7 @@ object TestWorkspace {
119119
// help rust select the right version when we run cargo test
120120
// TODO(https://github.com/smithy-lang/smithy-rs/issues/2048): load this from the msrv property using a
121121
// method as we do for runtime crate versions
122-
"[toolchain]\nchannel = \"1.75.0\"\n",
122+
"[toolchain]\nchannel = \"1.76.0\"\n",
123123
)
124124
// ensure there at least an empty lib.rs file to avoid broken crates
125125
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"

0 commit comments

Comments
 (0)