Unverified Commit 1ca2b469 authored by Russell Cohen's avatar Russell Cohen Committed by GitHub
Browse files

Increase MSRV to 1.53.0 (#730)

* Make to_* fns take self by value

* Changelog update

* Fix 2 missing autolinks

* Allow bare urls in generated code
parent ace9c5c6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@ on:
name: CI

env:
  rust_version: 1.52.1
  rust_version: 1.53.0
  rust_toolchain_components: clippy,rustfmt
  java_version: 11

+4 −0
Original line number Diff line number Diff line
vNext (Month Day, Year)
=======================
**Breaking changes**
- :warning: MSRV increased from 1.52.1 to 1.53.0 per our 3-behind MSRV policy.

**New this week**
- :bug: Fix an issue where `smithy-xml` may have generated invalid XML (smithy-rs#719)

v0.24 (September 24th, 2021)
+5 −0
Original line number Diff line number Diff line
vNext (Month Day, Year)
=======================
**Breaking changes**
- :warning: MSRV increased from 1.52.1 to 1.53.0 per our 3-behind MSRV policy.

**Tasks to cut release**
- [ ] Bump MSRV on aws-sdk-rust, then delete this line.

v0.0.19-alpha (September 24th, 2021)
====================================
+1 −1
Original line number Diff line number Diff line
@@ -90,7 +90,7 @@ impl CredentialsProviderChain {
                }
            }
        }
        return Err(CredentialsError::CredentialsNotLoaded);
        Err(CredentialsError::CredentialsNotLoaded)
    }
}

+2 −4
Original line number Diff line number Diff line
@@ -151,12 +151,10 @@ pub mod named {
    }

    fn lower_cow(mut inp: Cow<str>) -> Cow<str> {
        if inp.chars().all(|c| c.is_ascii_lowercase()) {
            inp
        } else {
        if !inp.chars().all(|c| c.is_ascii_lowercase()) {
            inp.to_mut().make_ascii_lowercase();
            inp
        }
        inp
    }

    impl NamedProviderFactory {
Loading