Bump version
This commit is contained in:
parent
a33ade48a8
commit
f5fffc72bb
|
|
@ -17,15 +17,14 @@ iOS 8.x, Swift 2.2.x
|
|||
```ruby
|
||||
use_frameworks!
|
||||
|
||||
# Swift 2.2
|
||||
pod 'Segmentio', '~> 0.1.5'
|
||||
pod 'Segmentio', '~> 1.0'
|
||||
```
|
||||
|
||||
*(CocoaPods v1.0.1 or later required. See [this blog post](http://blog.cocoapods.org/Pod-Authors-Guide-to-CocoaPods-Frameworks/) for details.)*
|
||||
|
||||
####[Carthage](http://github.com/Carthage/Carthage)
|
||||
```ruby
|
||||
github "Yalantis/Segmentio" ~> 0.1.5
|
||||
github "Yalantis/Segmentio" ~> 1.0
|
||||
```
|
||||
|
||||
##Usage
|
||||
|
|
|
|||
|
|
@ -1,21 +1,21 @@
|
|||
Pod::Spec.new do |spec|
|
||||
spec.name = "Segmentio"
|
||||
spec.version = "0.1.5"
|
||||
spec.name = "Segmentio"
|
||||
spec.version = "1.0"
|
||||
|
||||
spec.homepage = "https://github.com/Yalantis/Segmentio"
|
||||
spec.summary = "Animated top/bottom segmented control written in Swift!"
|
||||
spec.screenshot = 'https://raw.githubusercontent.com/Yalantis/Segmentio/master/Assets/animation.gif'
|
||||
spec.homepage = "https://github.com/Yalantis/Segmentio"
|
||||
spec.summary = "Animated top/bottom segmented control written in Swift!"
|
||||
spec.screenshot = 'https://raw.githubusercontent.com/Yalantis/Segmentio/master/Assets/animation.gif'
|
||||
|
||||
spec.author = "Yalantis"
|
||||
spec.license = { :type => "MIT", :file => "LICENSE" }
|
||||
spec.social_media_url = "https://twitter.com/yalantis"
|
||||
spec.author = "Yalantis"
|
||||
spec.license = { :type => "MIT", :file => "LICENSE" }
|
||||
spec.social_media_url = "https://twitter.com/yalantis"
|
||||
|
||||
spec.platform = :ios, '8.0'
|
||||
spec.ios.deployment_target = '8.0'
|
||||
spec.platform = :ios, '8.0'
|
||||
spec.ios.deployment_target = '8.0'
|
||||
|
||||
spec.source = { :git => "https://github.com/Yalantis/Segmentio.git", :tag => "0.1.5" }
|
||||
spec.source = { :git => "https://github.com/Yalantis/Segmentio.git", :tag => spec.version }
|
||||
|
||||
spec.source_files = 'Segmentio/Source/**/*.swift'
|
||||
spec.module_name = 'Segmentio'
|
||||
spec.requires_arc = true
|
||||
end
|
||||
spec.source_files = 'Segmentio/Source/**/*.swift'
|
||||
spec.module_name = 'Segmentio'
|
||||
spec.requires_arc = true
|
||||
end
|
||||
|
|
|
|||
Loading…
Reference in New Issue