Skip to content

Commit

Permalink
chore: updated deployment targets in podspec and package.swift files
Browse files Browse the repository at this point in the history
  • Loading branch information
desusai7 committed Jul 2, 2024
1 parent f3309a4 commit 70df09d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions JWTDecode.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ Pod::Spec.new do |s|
s.source = { :git => 'https://github.com/auth0/JWTDecode.swift.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/auth0'

s.ios.deployment_target = '13.0'
s.ios.deployment_target = '14.0'
s.osx.deployment_target = '11.0'
s.tvos.deployment_target = '13.0'
s.tvos.deployment_target = '14.0'
s.watchos.deployment_target = '7.0'
s.visionos.deployment_target = '1.0'

Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import PackageDescription

let package = Package(
name: "JWTDecode",
platforms: [.iOS(.v13), .macOS(.v11), .tvOS(.v13), .watchOS(.v7), .visionOS(.v1)],
platforms: [.iOS(.v14), .macOS(.v11), .tvOS(.v14), .watchOS(.v7), .visionOS(.v1)],
products: [.library(name: "JWTDecode", targets: ["JWTDecode"])],
dependencies: [
.package(url: "https://github.com/Quick/Quick.git", .upToNextMajor(from: "7.0.0")),
Expand Down

0 comments on commit 70df09d

Please sign in to comment.