-
Notifications
You must be signed in to change notification settings - Fork 512
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clean up Xcode 9 warnings and upgrade PINCache (#415)
- Loading branch information
1 parent
1d25184
commit 21bf2fe
Showing
72 changed files
with
1,635 additions
and
1,163 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
git "https://chromium.googlesource.com/webm/libwebp" "v0.6.0" | ||
github "pinterest/PINCache" "3.0.1-beta.5" | ||
github "pinterest/PINCache" "3.0.1-beta.6" | ||
github "pinterest/PINOperation" |
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,3 +1,3 @@ | ||
git "https://chromium.googlesource.com/webm/libwebp" "v0.6.0" | ||
github "pinterest/PINCache" "3.0.1-beta.5" | ||
github "pinterest/PINOperation" "1.0.3" | ||
github "pinterest/PINCache" "3.0.1-beta.6" | ||
github "pinterest/PINOperation" "1.1" |
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,6 @@ | ||
[ | ||
"^plans/", | ||
"^docs/", | ||
"^README.md$", | ||
"^CI/exclude-from-build.json$" | ||
] |
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 +1 @@ | ||
github "pinterest/PINOperation" == 1.0.3 | ||
github "pinterest/PINOperation" ~> 1.1.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
github "pinterest/PINOperation" "1.0.3" | ||
github "pinterest/PINOperation" "1.1" |
8 changes: 7 additions & 1 deletion
8
Carthage/Checkouts/PINCache/Carthage/Checkouts/PINOperation/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,3 +1,9 @@ | ||
### 1.0.0 -- 2017 January 10 ### | ||
## master | ||
* Add your own contributions to the next release on the line below this with your name. | ||
|
||
## 1.1 -- 2017 October 7 | ||
* Deprecate addOperation: in favor of scheduleOperation: [garrett](https://github.com/garrettmoon) | ||
|
||
## 1.0.0 -- 2017 January 10 | ||
|
||
- Initial release! |
4 changes: 4 additions & 0 deletions
4
Carthage/Checkouts/PINCache/Carthage/Checkouts/PINOperation/CI/build.sh
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/bash | ||
set -eo pipefail | ||
|
||
make all |
5 changes: 5 additions & 0 deletions
5
Carthage/Checkouts/PINCache/Carthage/Checkouts/PINOperation/CI/exclude-from-build.json
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[ | ||
"^plans/", | ||
"^docs/", | ||
"^CI/exclude-from-build.json$" | ||
] |
23 changes: 23 additions & 0 deletions
23
Carthage/Checkouts/PINCache/Carthage/Checkouts/PINOperation/Dangerfile
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
source_pattern = /(\.m|\.mm|\.h)$/ | ||
|
||
# Sometimes it's a README fix, or something like that - which isn't relevant for | ||
# including in a project's CHANGELOG for example | ||
declared_trivial = github.pr_title.include? "#trivial" | ||
has_changes_in_source_directory = !git.modified_files.grep(/Source/).empty? | ||
|
||
modified_source_files = git.modified_files.grep(source_pattern) | ||
has_modified_source_files = !modified_source_files.empty? | ||
added_source_files = git.added_files.grep(source_pattern) | ||
has_added_source_files = !added_source_files.empty? | ||
|
||
# Make it more obvious that a PR is a work in progress and shouldn't be merged yet | ||
warn("PR is classed as Work in Progress") if github.pr_title.include? "[WIP]" | ||
|
||
# Warn when there is a big PR | ||
warn("This is a big PR, please consider splitting it up to ease code review.") if git.lines_of_code > 500 | ||
|
||
# Changelog entries are required for changes to source files. | ||
no_changelog_entry = !git.modified_files.include?("CHANGELOG.md") | ||
if has_changes_in_source_directory && no_changelog_entry && !declared_trivial | ||
warn("Any source code changes should have an entry in CHANGELOG.md or have #trivial in their title.") | ||
end |
4 changes: 4 additions & 0 deletions
4
Carthage/Checkouts/PINCache/Carthage/Checkouts/PINOperation/Gemfile
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
source 'https://rubygems.org' | ||
|
||
gem 'danger' | ||
gem 'danger-slack' |
377 changes: 176 additions & 201 deletions
377
Carthage/Checkouts/PINCache/Carthage/Checkouts/PINOperation/LICENSE.txt
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
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
Oops, something went wrong.