-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #194 from longbai/test_update
proj update
- Loading branch information
Showing
9 changed files
with
121 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
#Changelog | ||
|
||
## 7.1.1 (2016-09-08) | ||
## 改变 | ||
* 修正 happydns 调用函数 | ||
|
||
## 7.1.0 (2016-07-04) | ||
## 改变 | ||
* 依赖升级到AFNetworking 到 3.x | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,32 @@ | ||
source 'https://github.com/CocoaPods/Specs.git' | ||
|
||
def shared_dependencies | ||
pod "AFNetworking", "~> 3" | ||
pod "HappyDNS", ">= 0.3" | ||
pod 'AFNetworking', '~> 3' | ||
pod 'HappyDNS', '>= 0.3' | ||
end | ||
|
||
def test_dependencies | ||
pod "AGAsyncTestHelper/Shorthand" | ||
pod 'AGAsyncTestHelper/Shorthand' | ||
end | ||
|
||
target "QiniuSDK_iOS" do | ||
platform :ios, "7.0" | ||
target 'QiniuSDK_iOS' do | ||
platform :ios, '7.0' | ||
shared_dependencies | ||
end | ||
|
||
target "QiniuSDK_iOSTests" do | ||
platform :ios, "7.0" | ||
target 'QiniuSDK_iOSTests' do | ||
platform :ios, '7.0' | ||
shared_dependencies | ||
test_dependencies | ||
end | ||
|
||
target "QiniuSDK_Mac" do | ||
platform :osx, "10.9" | ||
target 'QiniuSDK_Mac' do | ||
platform :osx, '10.9' | ||
shared_dependencies | ||
end | ||
|
||
target "QiniuSDK_MacTests" do | ||
platform :osx, "10.9" | ||
target 'QiniuSDK_MacTests' do | ||
platform :osx, '10.9' | ||
shared_dependencies | ||
test_dependencies | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'Qiniu' | ||
s.version = "7.1.0.1" | ||
s.summary = "Qiniu Resource Storage SDK for iOS and Mac" | ||
s.homepage = "https://github.com/qiniu/objc-sdk" | ||
s.social_media_url = "http://weibo.com/qiniutek" | ||
s.version = '7.1.1' | ||
s.summary = 'Qiniu Resource Storage SDK for iOS and Mac' | ||
s.homepage = 'https://github.com/qiniu/objc-sdk' | ||
s.social_media_url = 'http://weibo.com/qiniutek' | ||
s.author = "Qiniu => [email protected]" | ||
s.source = {:git => "https://github.com/qiniu/objc-sdk.git", :tag => "v#{s.version}"} | ||
s.source = {:git => 'https://github.com/qiniu/objc-sdk.git', :tag => "v#{s.version}"} | ||
|
||
s.ios.deployment_target = "7.0" | ||
s.osx.deployment_target = "10.9" | ||
s.ios.deployment_target = '7.0' | ||
s.osx.deployment_target = '10.9' | ||
|
||
s.source_files = "QiniuSDK/**/*.{h,m}" | ||
s.requires_arc = true | ||
s.libraries = "z" | ||
s.dependency "AFNetworking", "~> 3" | ||
s.dependency "HappyDNS", "~> 0.3" | ||
s.libraries = 'z' | ||
s.dependency 'AFNetworking', '~> 3' | ||
s.dependency 'HappyDNS', '~> 0.3' | ||
s.license = { :type => "MIT", :text => <<-LICENSE | ||
The MIT License (MIT) | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters