Skip to content

Commit

Permalink
fix: fixed the versions of dependencies being used
Browse files Browse the repository at this point in the history
  • Loading branch information
desusai7 committed Oct 9, 2024
1 parent 0245032 commit c0b1151
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Auth0.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ Pod::Spec.new do |s|
s.resource_bundles = { s.name => 'Auth0/PrivacyInfo.xcprivacy' }
s.swift_versions = ['5.7', '5.8']

s.dependency 'SimpleKeychain', '~> 1.1'
s.dependency 'JWTDecode', '~> 3.1'
s.dependency 'SimpleKeychain', '1.1.0'
s.dependency 'JWTDecode', '3.1.0'

s.ios.deployment_target = '13.0'
s.ios.exclude_files = macos_files
Expand Down
4 changes: 2 additions & 2 deletions Cartfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
github "auth0/SimpleKeychain" ~> 1.1
github "auth0/JWTDecode.swift" ~> 3.1
github "auth0/SimpleKeychain" == 1.1.0
github "auth0/JWTDecode.swift" == 3.1.0
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ let package = Package(
platforms: [.iOS(.v13), .macOS(.v11), .tvOS(.v13), .watchOS(.v7)],
products: [.library(name: "Auth0", targets: ["Auth0"])],
dependencies: [
.package(url: "/~https://github.com/auth0/SimpleKeychain.git", .upToNextMajor(from: "1.1.0")),
.package(url: "/~https://github.com/auth0/JWTDecode.swift.git", .upToNextMajor(from: "3.1.0")),
.package(url: "/~https://github.com/auth0/SimpleKeychain.git", exact: "1.1.0"),
.package(url: "/~https://github.com/auth0/JWTDecode.swift.git", exact: "3.1.0"),
.package(url: "/~https://github.com/Quick/Quick.git", .upToNextMajor(from: "6.0.0")),
.package(url: "/~https://github.com/Quick/Nimble.git", .upToNextMajor(from: "12.0.0")),
.package(url: "/~https://github.com/AliSoftware/OHHTTPStubs.git", .upToNextMajor(from: "9.0.0"))
Expand Down

0 comments on commit c0b1151

Please sign in to comment.