Skip to content

Commit

Permalink
Merge pull request #6 from dagronf/set-minimum-macos-version-to-1011
Browse files Browse the repository at this point in the history
Set minimum macos version to 10.11 to fix Cocoapods Xcode 14.3+ issue
  • Loading branch information
fwcd authored Nov 20, 2023
2 parents 5891c4f + 576b1d1 commit 12063b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SwiftQRCodeGenerator.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'SwiftQRCodeGenerator'
s.version = '1.0.4'
s.version = '2.0.0'
s.summary = 'QR code generator written in pure Swift'
s.homepage = 'https://github.com/fwcd/swift-qrcode-generator'
s.license = { :type => 'MIT', :file => 'LICENSE' }
Expand All @@ -10,7 +10,7 @@ Pod::Spec.new do |s|
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.osx.deployment_target = '10.10'
s.osx.deployment_target = '10.11'
s.module_name = 'QRCodeGenerator'
s.source_files = 'Sources/**/*'
s.frameworks = 'Foundation'
Expand Down

0 comments on commit 12063b1

Please sign in to comment.