Updated podspec file, deleted deprecated '.swift-version' file

This commit is contained in:
Vincent Esche 2019-11-02 17:24:58 +01:00
parent da8da3835a
commit 4344c8dabe
2 changed files with 8 additions and 4 deletions

View File

@ -1 +0,0 @@
5

View File

@ -1,19 +1,24 @@
Pod::Spec.new do |s|
s.name = 'Surge'
s.version = '2.0.0'
s.version = '2.3.0'
s.license = 'MIT'
s.summary = 'Swift + Accelerate'
s.homepage = 'https://github.com/mattt/Surge'
s.social_media_url = 'http://twitter.com/mattt'
s.authors = { 'Mattt Thompson' => 'm@mattt.me' }
s.authors = {
'Mattt Thompson' => 'm@mattt.me',
'Vincent Esche' => 'regexident@gmail.com'
}
s.source = { :git => 'https://github.com/mattt/Surge.git', :tag => s.version }
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '3.0'
s.swift_version = '5.1'
s.source_files = 'Sources/Surge/*.swift'
s.source_files = 'Sources/Surge/**/*.swift'
s.frameworks = 'Accelerate'