From 10281f6f8d62da46d8664bdf7d0c4546e458ce1c Mon Sep 17 00:00:00 2001 From: Harshdeep Singh <6162866+harsh62@users.noreply.github.com> Date: Thu, 21 Nov 2024 09:08:14 -0500 Subject: [PATCH] chore: pin the Amplify version up to 2.44.x --- CHANGELOG.md | 5 +++++ Package.swift | 2 +- Sources/Authenticator/Constants/ComponentInformation.swift | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b08ce6b..99ef20d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 1.2.1 (2024-11-21) + +### Misc. Updates +- Pinning the Amplify version up to 2.44.x + ## 1.2.0 (2024-10-31) ### Feature diff --git a/Package.swift b/Package.swift index 5fb8291..3f7756c 100644 --- a/Package.swift +++ b/Package.swift @@ -13,7 +13,7 @@ let package = Package( targets: ["Authenticator"]), ], dependencies: [ - .package(url: "https://github.com/aws-amplify/amplify-swift", from: "2.44.0"), + .package(url: "https://github.com/aws-amplify/amplify-swift", "2.44.0"..<"2.45.0") ], targets: [ .target( diff --git a/Sources/Authenticator/Constants/ComponentInformation.swift b/Sources/Authenticator/Constants/ComponentInformation.swift index 19fd844..4b8034b 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.2.0" + public static let version = "1.2.1" public static let name = "amplify-ui-swift-authenticator" }