Skip to content

Commit

Permalink
update PINCache (#17)
Browse files Browse the repository at this point in the history
* use newer PINCache to avoid runtime error

Older PINCache causes runtime erorr sometimes.
To avoid this problem, set version of PINCache.

refs: TextureGroup/Texture#769

* use PINCache 3.0.1-beta.6 or later

with submodule reference
  • Loading branch information
fumito-ito authored and dangthaison91 committed Apr 24, 2018
1 parent 0597c13 commit 4240e8e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cartfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@

github "RxSwiftCommunity/RxDataSources"
github "texturegroup/texture"
github "pinterest/PINCache" ~> "3.0.1-beta.6"
1 change: 1 addition & 0 deletions Cartfile.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ github "pinterest/PINCache" "3.0.1-beta.5"
github "pinterest/PINOperation" "1.0.3"
github "pinterest/PINRemoteImage" "3.0.0-beta.12"
github "texturegroup/texture" "2.5.1"
github "pinterest/PINCache" "3.0.1-beta.6"
2 changes: 1 addition & 1 deletion Carthage/Checkouts/PINCache
Submodule PINCache updated 37 files
+7 −0 CHANGELOG.md
+1 −0 CI/exclude-from-build.json
+1 −1 Cartfile
+1 −1 Cartfile.resolved
+7 −1 Carthage/Checkouts/PINOperation/CHANGELOG.md
+4 −0 Carthage/Checkouts/PINOperation/CI/build.sh
+5 −0 Carthage/Checkouts/PINOperation/CI/exclude-from-build.json
+23 −0 Carthage/Checkouts/PINOperation/Dangerfile
+4 −0 Carthage/Checkouts/PINOperation/Gemfile
+176 −201 Carthage/Checkouts/PINOperation/LICENSE.txt
+2 −2 Carthage/Checkouts/PINOperation/PINOperation.podspec
+22 −1 Carthage/Checkouts/PINOperation/PINOperation.xcodeproj/project.pbxproj
+3 −1 Carthage/Checkouts/PINOperation/PINOperation.xcodeproj/xcshareddata/xcschemes/PINOperation-macOS.xcscheme
+3 −1 Carthage/Checkouts/PINOperation/PINOperation.xcodeproj/xcshareddata/xcschemes/PINOperation-tvOS.xcscheme
+3 −1 Carthage/Checkouts/PINOperation/PINOperation.xcodeproj/xcshareddata/xcschemes/PINOperation.xcscheme
+1 −1 Carthage/Checkouts/PINOperation/README.md
+18 −13 Carthage/Checkouts/PINOperation/Source/PINOperationGroup.m
+81 −9 Carthage/Checkouts/PINOperation/Source/PINOperationQueue.h
+57 −20 Carthage/Checkouts/PINOperation/Source/PINOperationQueue.m
+6 −1 Carthage/Checkouts/PINOperation/Tests/PINOperationGroupTests.m
+29 −22 Carthage/Checkouts/PINOperation/Tests/PINOperationQueueTests.m
+20 −9 Carthage/Checkouts/PINOperation/makefile
+0 −38 Carthage/Checkouts/PINOperation/run_tests_update_status.sh
+2 −2 Makefile
+3 −3 PINCache.podspec
+13 −1 PINCache.xcodeproj/project.pbxproj
+3 −1 PINCache.xcodeproj/xcshareddata/xcschemes/PINCache-macOS.xcscheme
+3 −1 PINCache.xcodeproj/xcshareddata/xcschemes/PINCache-tvOS.xcscheme
+3 −1 PINCache.xcodeproj/xcshareddata/xcschemes/PINCache.xcscheme
+5 −4 README.md
+11 −31 Source/PINCache.m
+6 −0 Source/PINCaching.h
+8 −2 Source/PINDiskCache.h
+301 −276 Source/PINDiskCache.m
+2 −2 Source/PINMemoryCache.h
+50 −86 Source/PINMemoryCache.m
+123 −26 Tests/PINCacheTests.m

0 comments on commit 4240e8e

Please sign in to comment.