Skip to content

Commit

Permalink
bump aws-runtime to fix release infrastructure (#3630)
Browse files Browse the repository at this point in the history
## Motivation and Context
Recent changes (e.g.
242814c)
were backported to release branch but a new smithy-rs release hasn't
been made.

`runtime-versioner audit` is pulling latest release of
`release-2024-04-30` which is causing it to see a diff to `aws-runtime`
(which was released today with the SDK release).

```
> runtime-versioner audit
2024-05-07T22:33:45.710839Z  INFO runtime_versioner::command::audit: 'aws-config' changed and was version bumped from 1.3.0 to 1.4.0
2024-05-07T22:33:46.403927Z  INFO runtime_versioner::command::audit: 'aws-smithy-runtime' changed and was version bumped from 1.4.0 to 1.5.0
2024-05-07T22:33:46.436213Z  INFO runtime_versioner::command::audit: 'aws-smithy-runtime-api' changed and was version bumped from 1.5.0 to 1.6.0
2024-05-07T22:33:46.468490Z  INFO runtime_versioner::command::audit: 'aws-smithy-types' changed and was version bumped from 1.1.8 to 1.1.9
2024-05-07T22:33:46.588902Z  INFO runtime_versioner::command::audit: 'aws-types' changed and was version bumped from 1.2.0 to 1.2.1
aws-runtime was changed and version bumped, but the new version number (1.2.1) has already been published to crates.io. Choose a new version number.
Error: there are audit failures in the runtime crates
```

This PR bumps the version to get around this which is causing preview
build failures and will cause release issues until fixed.

----

_By submitting this pull request, I confirm that you can use, modify,
copy, and redistribute this contribution, under the terms of your
choice._
  • Loading branch information
aajtodd authored May 7, 2024
1 parent 9d2b0dd commit cbb3760
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws/rust-runtime/aws-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aws-runtime"
version = "1.2.1"
version = "1.2.2"
authors = ["AWS Rust SDK Team <[email protected]>"]
description = "Runtime support code for the AWS SDK. This crate isn't intended to be used directly."
edition = "2021"
Expand Down

0 comments on commit cbb3760

Please sign in to comment.