-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 1.1.1 release * Fix deployment target to reality * Update CHANGELOG for 1.1.1 release * update exclude
- Loading branch information
1 parent
7b970ef
commit af6665f
Showing
4 changed files
with
9 additions
and
4 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,7 @@ | ||
[ | ||
"^plans/", | ||
"^docs/", | ||
"^CI/exclude-from-build.json$" | ||
"^CI/exclude-from-build.json$", | ||
"^README.md$", | ||
"^CHANGELOG.md$" | ||
] |
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,14 +1,14 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'PINOperation' | ||
s.version = '1.1' | ||
s.version = '1.1.1' | ||
s.homepage = 'https://github.com/pinterest/PINOperation' | ||
s.summary = 'Fast, concurrency-limited task queue for iOS and OS X.' | ||
s.authors = { 'Garrett Moon' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/pinterest/PINOperation.git', :tag => "#{s.version}" } | ||
s.license = { :type => 'Apache 2.0', :file => 'LICENSE.txt' } | ||
s.requires_arc = true | ||
s.frameworks = 'Foundation' | ||
s.ios.deployment_target = '5.0' | ||
s.ios.deployment_target = '8.0' | ||
s.osx.deployment_target = '10.8' | ||
s.tvos.deployment_target = '9.0' | ||
s.watchos.deployment_target = '2.0' | ||
|
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