Skip to content

Commit

Permalink
Rectify deployment target in the podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
1and2papa committed Nov 25, 2015
1 parent f33e4ff commit a8f638a
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 13 deletions.
8 changes: 4 additions & 4 deletions CTAssetsPickerController.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'CTAssetsPickerController'
spec.version = '3.2.0'
spec.version = '3.2.1'
spec.summary = 'iOS control that allows picking multiple photos and videos from user\'s photo library.'

spec.description = <<-DESC
Expand All @@ -15,9 +15,9 @@ Pod::Spec.new do |spec|
spec.license = { :type => 'MIT', :file => 'LICENSE' }
spec.author = { 'Clement T' => 'chiunam@gmail.com' }
spec.social_media_url = 'https://twitter.com/chiunam'
spec.platform = :ios, '8.3'
spec.ios.deployment_target = '8.3'
spec.source = { :git => 'https://github.com/chiunam/CTAssetsPickerController.git', :tag => 'v3.2.0' }
spec.platform = :ios, '8.0'
spec.ios.deployment_target = '8.0'
spec.source = { :git => 'https://github.com/chiunam/CTAssetsPickerController.git', :tag => 'v3.2.1' }
spec.public_header_files = 'CTAssetsPickerController/*.h'
spec.source_files = 'CTAssetsPickerController/**/*.{h,m}'
spec.resource_bundles = { 'CTAssetsPickerController' => ['CTAssetsPickerController/Resources/CTAssetsPicker.xcassets/*/*.png', 'CTAssetsPickerController/Resources/*.lproj'] }
Expand Down
2 changes: 1 addition & 1 deletion Podfile
@@ -1,4 +1,4 @@
platform :ios, '8.3'
platform :ios, '8.0'

source 'https://github.com/CocoaPods/Specs.git'

Expand Down
17 changes: 9 additions & 8 deletions README.md
Expand Up @@ -13,25 +13,26 @@ CTAssetsPickerController is a highly customisable iOS controller that allows pic
3. Filters assets for picking only photos or videos.
4. Filters assets or albums by their properties.
5. Supports assets stored in iCloud.
6. Optionally shows selection order.
7. Achieves average 5x fps.
8. Conforms UIAppearance Protocol.
9. Conforms UIAccessibility Protocol.
10. Highly customisable.
11. Pure Auto Layout. (Thanks for the great work of [PureLayout](https://github.com/smileyborg/PureLayout))
6. Supports many [languages](https://github.com/chiunam/CTAssetsPickerController/wiki/Localisation).
7. Optionally shows selection order.
8. Achieves average 5x fps.
9. Conforms UIAppearance protocol.
10. Conforms UIAccessibility protocol.
11. Highly customisable.
12. Pure Auto Layout. (Thanks for the great work of [PureLayout](https://github.com/smileyborg/PureLayout))

## Release Notes
* [Release Notes](https://github.com/chiunam/CTAssetsPickerController/releases)

## Minimum Requirement
iOS 9 SDK, Minimum Deployment Target iOS 8.3
iOS 9 SDK, Minimum Deployment Target iOS 8.0

## Adding to your project
1. [CocoaPods](http://cocoapods.org) Podfile

````
platform :ios, '8.3'
platform :ios, '8.0'
pod 'CTAssetsPickerController', '~> 3.2.0'
````
Expand Down

0 comments on commit a8f638a

Please sign in to comment.