From 12b5d39382938216d2697f3ae63b518cc8729143 Mon Sep 17 00:00:00 2001 From: Sai Venkat Desu Date: Mon, 16 Sep 2024 20:42:24 +0530 Subject: [PATCH] chore: changed beta version to 2.9.0 --- Auth0.podspec | 6 +++--- Auth0/Info.plist | 2 +- Auth0/Version.swift | 2 +- Cartfile | 4 ++-- Cartfile.resolved | 4 ++-- Package.swift | 4 ++-- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Auth0.podspec b/Auth0.podspec index 79e698af..490775a4 100644 --- a/Auth0.podspec +++ b/Auth0.podspec @@ -30,7 +30,7 @@ excluded_files = [*web_auth_files, *ios_files, *macos_files] Pod::Spec.new do |s| s.name = 'Auth0' - s.version = '2.9.0-beta.0' + s.version = '2.9.0' s.summary = "Auth0 SDK for Apple platforms" s.description = <<-DESC Auth0 SDK for iOS, macOS, tvOS, watchOS and visionOS apps. @@ -44,8 +44,8 @@ Pod::Spec.new do |s| s.resource_bundles = { s.name => 'Auth0/PrivacyInfo.xcprivacy' } s.swift_versions = ['5.9'] - s.dependency 'SimpleKeychain', '1.2.0-beta.0' - s.dependency 'JWTDecode', '3.2.0-beta.0' + s.dependency 'SimpleKeychain', '1.2.0' + s.dependency 'JWTDecode', '3.2.0' s.ios.deployment_target = '14.0' s.ios.exclude_files = macos_files diff --git a/Auth0/Info.plist b/Auth0/Info.plist index 0bd35196..99b5d8ec 100644 --- a/Auth0/Info.plist +++ b/Auth0/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 2.9.0-beta.0 + 2.9.0 CFBundleSignature ???? CFBundleVersion diff --git a/Auth0/Version.swift b/Auth0/Version.swift index d865bad7..25e2f88b 100644 --- a/Auth0/Version.swift +++ b/Auth0/Version.swift @@ -1 +1 @@ -let version = "2.9.0-beta.0" +let version = "2.9.0" diff --git a/Cartfile b/Cartfile index e2cb0b01..e2147a9d 100644 --- a/Cartfile +++ b/Cartfile @@ -1,2 +1,2 @@ -github "auth0/SimpleKeychain" "1.2.0-beta.0" -github "auth0/JWTDecode.swift" "3.2.0-beta.0" +github "auth0/SimpleKeychain" "1.2.0" +github "auth0/JWTDecode.swift" "3.2.0" diff --git a/Cartfile.resolved b/Cartfile.resolved index b371fe5f..8af85490 100644 --- a/Cartfile.resolved +++ b/Cartfile.resolved @@ -1,4 +1,4 @@ github "Quick/Nimble" "v13.3.0" github "Quick/Quick" "v7.6.1" -github "auth0/JWTDecode.swift" "3.2.0-beta.0" -github "auth0/SimpleKeychain" "1.2.0-beta.0" +github "auth0/JWTDecode.swift" "3.2.0" +github "auth0/SimpleKeychain" "1.2.0" diff --git a/Package.swift b/Package.swift index 5cd45c31..c1374f36 100644 --- a/Package.swift +++ b/Package.swift @@ -10,8 +10,8 @@ let package = Package( platforms: [.iOS(.v14), .macOS(.v11), .tvOS(.v14), .watchOS(.v7), .visionOS(.v1)], products: [.library(name: "Auth0", targets: ["Auth0"])], dependencies: [ - .package(url: "https://github.com/auth0/SimpleKeychain.git", exact:"1.2.0-beta.0"), - .package(url: "https://github.com/auth0/JWTDecode.swift.git", exact:"3.2.0-beta.0"), + .package(url: "https://github.com/auth0/SimpleKeychain.git", exact:"1.2.0"), + .package(url: "https://github.com/auth0/JWTDecode.swift.git", exact:"3.2.0"), .package(url: "https://github.com/Quick/Quick.git", .upToNextMajor(from: "7.0.0")), .package(url: "https://github.com/Quick/Nimble.git", .upToNextMajor(from: "13.0.0")) ],