From d26325392aefe7822dea79a757d4e300c694d010 Mon Sep 17 00:00:00 2001 From: Arne Bahlo Date: Sun, 23 Oct 2016 15:17:49 +0200 Subject: [PATCH] Fix Podspec, bump version --- README.md | 4 ++-- SwiftGifOrigin.podspec | 26 +++++++++++--------------- 2 files changed, 13 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 738e7f1..76dbca4 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ platform :ios, '9.0' use_frameworks! target '' do - pod 'SwiftGifOrigin', '~> 1.6' + pod 'SwiftGifOrigin', '~> 1.6.1' end ``` @@ -49,7 +49,7 @@ brew install carthage Add the following line to your `Cartfile` to add SwiftGif: ```ogdl -github "bahlo/SwiftGif" ~> 1.6 +github "bahlo/SwiftGif" ~> 1.6.1 ``` Run `carthage update` to build the framework and drag the built diff --git a/SwiftGifOrigin.podspec b/SwiftGifOrigin.podspec index d2e1ddb..cd49b96 100644 --- a/SwiftGifOrigin.podspec +++ b/SwiftGifOrigin.podspec @@ -1,18 +1,14 @@ -Pod::Spec.new do |s| - s.name = 'SwiftGifOrigin' - s.version = '1.6' - s.summary = 'A small UIImage extension with gif support' - s.homepage = 'https://github.com/bahlo/SwiftGif' - s.license = 'MIT' - s.author = { 'Arne Bahlo': 'hallo@arne.me' } +Pod::Spec.new do |spec| + spec.name = 'SwiftGifOrigin' + spec.version = '1.6.1' + spec.license = { 'type' => 'MIT' } + spec.homepage = 'https://github.com/bahlo/SwiftGif' + spec.authors = { 'Arne Bahlo' => 'hallo@arne.me' } + spec.summary = 'A small UIImage extension with gif support' + spec.source = { git: 'https://github.com/bahlo/SwiftGif.git', tag: 'v1.6.1' } - s.ios.deployment_target = '8.0' - s.tvos.deployment_target = '9.0' + spec.ios.deployment_target = '8.0' + spec.tvos.deployment_target = '9.0' - s.source = { - git: 'https://github.com/bahlo/SwiftGif.git', - tag: 'v1.6' - } - - s.source_files = 'SwiftGifCommon/*.swift' + spec.source_files = 'SwiftGifCommon/*.swift' end