Skip to content

Commit

Permalink
chore: update smithy version to 1.22.0
Browse files Browse the repository at this point in the history
## Motivation

awslabs/aws-sdk-swift#597 is failing due to unresolved shape `smithy.api#Unit` which was introduced in smithy-lang/smithy#980

## Changes

Updated smithyVersion to 1.22.0.

## Result

AWS SDK handles `smithy.api#Unit` for operation correctly.
  • Loading branch information
Ganesh Jangir committed Aug 2, 2022
1 parent 44e4a16 commit ad77d1f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

/// General Service Error structure used when exact error could not be deduced from the `HttpResponse`
public struct UnknownHttpServiceError: HttpServiceError {
public struct UnknownHttpServiceError: HttpServiceError, Swift.Equatable {
public var _isThrottling: Bool = false

public var _statusCode: HttpStatusCode?
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kotlin.code.style=official
# config

# codegen
smithyVersion=1.13.1
smithyVersion=1.22.0
smithyGradleVersion=0.5.3

# kotlin
Expand Down
1 change: 1 addition & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@ pluginManagement {
rootProject.name = "smithy-swift"

include("smithy-swift-codegen")
include("smithy-swift-codegen-test")

0 comments on commit ad77d1f

Please sign in to comment.