Skip to content

Commit

Permalink
Bump minimum supported iOS version to 13.0 and macOS version to 10.13
Browse files Browse the repository at this point in the history
  • Loading branch information
hamchapman committed Oct 31, 2024
1 parent aed2b2a commit 6e9eb6c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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: "SwiftCBOR",
platforms: [.macOS(.v10_10), .iOS(.v10)],
platforms: [.macOS(.v10_13), .iOS(.v13)],
products: [
.library(name: "SwiftCBOR", targets: ["SwiftCBOR"])
],
Expand Down
4 changes: 2 additions & 2 deletions SwiftCBOR.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ Pod::Spec.new do |s|
s.source = { git: 'https://github.com/unrelentingtech/SwiftCBOR.git', tag: "v#{s.version}" }
s.swift_version = '5.0'

s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.12'
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.13'

s.source_files = 'Sources/**/*.{swift,h}'

Expand Down

0 comments on commit 6e9eb6c

Please sign in to comment.