From c72eaf234c5e7f50b6407cc7ba4a7c07b664bddc Mon Sep 17 00:00:00 2001 From: Arthur Ariel Sabintsev Date: Wed, 14 Mar 2018 21:32:52 -0400 Subject: [PATCH] Improved ccoapods compatibility by modernizing podspec --- .swift-version | 1 - Siren.podspec | 16 ++++++++++------ 2 files changed, 10 insertions(+), 7 deletions(-) delete mode 100644 .swift-version diff --git a/.swift-version b/.swift-version deleted file mode 100644 index 5186d070..00000000 --- a/.swift-version +++ /dev/null @@ -1 +0,0 @@ -4.0 diff --git a/Siren.podspec b/Siren.podspec index 3e9f0b1e..538365a4 100755 --- a/Siren.podspec +++ b/Siren.podspec @@ -1,15 +1,19 @@ Pod::Spec.new do |s| + # Version + s.version = "3.2.3" + s.swift_version = '4.0' + + # Meta s.name = "Siren" - s.version = "3.2.2" s.summary = "Notify users that a new version of your iOS app is available, and prompt them with the App Store link." - - s.description = <<-DESC -Notify users when a new version of your iOS app is available, and prompt them with the App Store link. - DESC - s.homepage = "https://github.com/ArtSabintsev/Siren" s.license = "MIT" s.authors = { "Arthur Ariel Sabintsev" => "arthur@sabintsev.com", "Aaron Brager" => "getaaron@gmail.com" } + s.description = <<-DESC + Notify your users when a new version of your iOS app is available, and prompt them with the App Store link. + DESC + + # Compatibility & Sources s.platform = :ios, "8.0" s.source = { :git => "https://github.com/ArtSabintsev/Siren.git", :tag => s.version.to_s } s.source_files = 'Sources/*.swift'