diff --git a/CHANGELOG.md b/CHANGELOG.md index 8aec754..d052b28 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 1.1.3 (2024-05-15) + +### Bug Fixes + +- Sign in fails when user is auto confirmed after sign up (#72) + ## 1.1.2 (2024-04-26) ### Bug Fixes diff --git a/Package.resolved b/Package.resolved index 5f66c8d..8237d75 100644 --- a/Package.resolved +++ b/Package.resolved @@ -5,8 +5,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/aws-amplify/amplify-swift", "state" : { - "revision" : "3cc17d2635f743d32c68f4309836d30b49e970cf", - "version" : "2.26.1" + "revision" : "6c73bf77e8df9634b311de325927610188261ab4", + "version" : "2.33.6" } }, { @@ -18,22 +18,13 @@ "version" : "1.1.1" } }, - { - "identity" : "aws-appsync-realtime-client-ios", - "kind" : "remoteSourceControl", - "location" : "https://github.com/aws-amplify/aws-appsync-realtime-client-ios.git", - "state" : { - "revision" : "a08684c5004e2049c29f57a5938beae9695a1ef7", - "version" : "3.1.2" - } - }, { "identity" : "aws-crt-swift", "kind" : "remoteSourceControl", "location" : "https://github.com/awslabs/aws-crt-swift", "state" : { - "revision" : "fd1756b6e5c9fd1a906edfb743f7cb64c2c98639", - "version" : "0.17.0" + "revision" : "0d0a0cf2e2cb780ceeceac190b4ede94f4f96902", + "version" : "0.26.0" } }, { @@ -41,8 +32,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/awslabs/aws-sdk-swift.git", "state" : { - "revision" : "387016f3e62119e9962da4357c63671c694554e6", - "version" : "0.31.0" + "revision" : "47922c05dd66be717c7bce424651a534456717b7", + "version" : "0.36.2" } }, { @@ -50,8 +41,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/smithy-lang/smithy-swift", "state" : { - "revision" : "ab999a9f0c972adcb350beda3c630a35697f7e8e", - "version" : "0.35.0" + "revision" : "8a5b0105c1b8a1d26a9435fb0af3959a7f5de578", + "version" : "0.41.1" } }, { @@ -59,26 +50,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/stephencelis/SQLite.swift.git", "state" : { - "revision" : "5f5ad81ac0d0a0f3e56e39e646e8423c617df523", - "version" : "0.13.2" - } - }, - { - "identity" : "starscream", - "kind" : "remoteSourceControl", - "location" : "https://github.com/daltoniam/Starscream", - "state" : { - "revision" : "df8d82047f6654d8e4b655d1b1525c64e1059d21", - "version" : "4.0.4" - } - }, - { - "identity" : "swift-collections", - "kind" : "remoteSourceControl", - "location" : "https://github.com/apple/swift-collections", - "state" : { - "revision" : "94cf62b3ba8d4bed62680a282d4c25f9c63c2efb", - "version" : "1.1.0" + "revision" : "e78ae0220e17525a15ac68c697a155eb7a672a8e", + "version" : "0.15.0" } }, { @@ -89,15 +62,6 @@ "revision" : "e97a6fcb1ab07462881ac165fdbb37f067e205d5", "version" : "1.5.4" } - }, - { - "identity" : "xmlcoder", - "kind" : "remoteSourceControl", - "location" : "https://github.com/MaxDesiatov/XMLCoder.git", - "state" : { - "revision" : "80b4a1646399b8e4e0ce80711653476a85bd5e37", - "version" : "0.17.0" - } } ], "version" : 2 diff --git a/README.md b/README.md index b5cdcc0..8817d39 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,8 @@ The **Amplify UI Authenticator** is a component that supports several authentiat More information on setting up and using the Authenticator is in the [Amplify UI Authenticator documentation](https://ui.docs.amplify.aws/swift/connected-components/authenticator). +This is a test change to validate the release workflow + ## Security See [CONTRIBUTING](CONTRIBUTING.md#security-issue-notifications) for more information. diff --git a/Sources/Authenticator/Constants/ComponentInformation.swift b/Sources/Authenticator/Constants/ComponentInformation.swift index a945b57..2afdb45 100644 --- a/Sources/Authenticator/Constants/ComponentInformation.swift +++ b/Sources/Authenticator/Constants/ComponentInformation.swift @@ -8,6 +8,6 @@ import Foundation public class ComponentInformation { - public static let version = "1.1.2" + public static let version = "1.1.3" public static let name = "amplify-ui-swift-authenticator" }