Commit 13c8bb31 authored by Landon James's avatar Landon James
Browse files

Small adjustments to appease nightly-2025-08-06

parent c3cc570b
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -4,6 +4,8 @@ applies_to:
  - client
authors:
  - joshtriplett
references:
  - smithy-rs#4208
breaking: false
new_feature: true
bug_fix: false
+1 −1
Original line number Diff line number Diff line
@@ -85,7 +85,7 @@ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"

[[package]]
name = "aws-credential-types"
version = "1.2.5"
version = "1.2.6"
dependencies = [
 "async-trait",
 "aws-smithy-async",
+1 −1
Original line number Diff line number Diff line
@@ -203,7 +203,7 @@ impl AssumeRoleProviderBuilder {
    /// This enables overriding the connection used to communicate with STS in addition to other internal
    /// fields like the time source and sleep implementation used for caching.
    ///
    /// If this field is not provided, configuration from [`aws_config::load_from_env().await`] is used.
    /// If this field is not provided, configuration from [`crate::load_from_env()`] is used.
    ///
    /// # Examples
    /// ```rust
+1 −1
Original line number Diff line number Diff line
[package]
name = "aws-credential-types"
version = "1.2.5"
version = "1.2.6"
authors = ["AWS Rust SDK Team <aws-sdk-rust@amazon.com>"]
description = "Types for AWS SDK credentials."
edition = "2021"
+1 −1
Original line number Diff line number Diff line
@@ -33,7 +33,7 @@ construct credentials from hardcoded values.
//!
//! ### With dynamically loaded credentials
//! If you are loading credentials dynamically, you can provide your own implementation of
//! [`ProvideCredentials`](crate::provider::ProvideCredentials). Generally, this is best done by
//! [`ProvideCredentials`]. Generally, this is best done by
//! defining an inherent `async fn` on your structure, then calling that method directly from
//! the trait implementation.
//! ```rust
Loading