Skip to content

Commit

Permalink
v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ocollet committed Oct 9, 2019
1 parent 19517ed commit 2a11c2e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![CocoaPods Compatible](https://img.shields.io/cocoapods/v/UnsplashPhotoPicker.svg?style=flat-square)](https://cocoapods.org/pods/UnsplashPhotoPicker)
[![Carthage Compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat-square)](https://github.com/Carthage/Carthage)
[![Platform](https://img.shields.io/cocoapods/p/UnsplashPhotoPicker.svg?style=flat-square)](https://alamofire.github.io/Alamofire)
[![Platform](https://img.shields.io/cocoapods/p/UnsplashPhotoPicker.svg?style=flat-square)](https://github.com/unsplash/unsplash-photopicker-ios)
[![License](https://img.shields.io/github/license/unsplash/unsplash-photopicker-ios.svg?style=flat-square)](https://github.com/unsplash/unsplash-photopicker-ios)

UnsplashPhotoPicker is an iOS UI component that allows you to quickly search the Unsplash library for free high-quality photos with just a few lines of code.
Expand Down Expand Up @@ -45,7 +45,7 @@ UnsplashPhotoPicker is a view controller. You present it to offer your users to
To integrate UnsplashPhotoPicker into your Xcode project using [Carthage](https://github.com/Carthage/Carthage), specify it in your `Cartfile`:

```ogdl
github "unsplash/unsplash-photopicker-ios" ~> 1.0
github "unsplash/unsplash-photopicker-ios" ~> 1.1
```

Run `carthage update` to build the framework and drag the built `UnsplashPhotoPicker.framework` into your Xcode project.
Expand All @@ -60,7 +60,7 @@ platform :ios, '11.0'
use_frameworks!

target '<Your Target Name>' do
pod 'UnsplashPhotoPicker', '~> 1.0'
pod 'UnsplashPhotoPicker', '~> 1.1'
end
```

Expand Down
6 changes: 3 additions & 3 deletions UnsplashPhotoPicker.podspec
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
Pod::Spec.new do |spec|
spec.name = 'UnsplashPhotoPicker'
spec.version = '1.0.1'
spec.version = '1.1.0'
spec.license = { :type => 'MIT' }
spec.homepage = 'https://github.com/unsplash/unsplash-photopicker-ios'
spec.authors = { 'Unsplash' => 'apps@unsplash.com' }
spec.summary = 'A photo picker to search for and use photos from Unsplash.'
spec.source = { :git => 'https://github.com/unsplash/unsplash-photopicker-ios.git', :tag => '1.0.1' }
spec.source = { :git => 'https://github.com/unsplash/unsplash-photopicker-ios.git', :tag => '1.1.0' }
spec.source_files = 'UnsplashPhotoPicker/UnsplashPhotoPicker/**/*.{h,m,swift,xib,strings,stringsdict}'
spec.framework = 'Foundation', 'UIKit'
spec.platform = :ios, '11.0'
spec.requires_arc = true
spec.swift_version = '4.2'
spec.swift_version = '5.0'
end

0 comments on commit 2a11c2e

Please sign in to comment.