From 2a11c2e262ef62b3103d01dda4b7954a46638b9b Mon Sep 17 00:00:00 2001 From: Olivier Collet Date: Wed, 9 Oct 2019 15:19:39 -0400 Subject: [PATCH] v1.1.0 --- README.md | 6 +++--- UnsplashPhotoPicker.podspec | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 138fae9..094b8b5 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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. @@ -60,7 +60,7 @@ platform :ios, '11.0' use_frameworks! target '' do - pod 'UnsplashPhotoPicker', '~> 1.0' + pod 'UnsplashPhotoPicker', '~> 1.1' end ``` diff --git a/UnsplashPhotoPicker.podspec b/UnsplashPhotoPicker.podspec index ac254e2..3c9e1db 100644 --- a/UnsplashPhotoPicker.podspec +++ b/UnsplashPhotoPicker.podspec @@ -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