Skip to content

Commit

Permalink
Release 8.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
oskarirauta committed Dec 29, 2018
1 parent 4bb337f commit c164270
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion iCloudSync.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'iCloudSync'
s.version = '8.0.10'
s.version = '8.0.11'
s.license = { :type => 'MIT' }
s.summary = 'Sync and Manage iCloud Documents. A fork, complete rewrite, of iCloud Document Sync written in pure Swift.'

Expand Down
2 changes: 1 addition & 1 deletion iCloudSync/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>8.0.10</string>
<string>8.0.11</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
</dict>
Expand Down
5 changes: 4 additions & 1 deletion iCloudSync/iCloud.swift
Original file line number Diff line number Diff line change
Expand Up @@ -821,7 +821,10 @@ open class iCloud: NSObject {
// Log success
if self.verboseLogging { NSLog("[iCloud] The document has been deleted") }

DispatchQueue.main.async { self.updateFiles() }
DispatchQueue.main.async {
self.updateFiles()
completion?(nil)
}
}
})
}
Expand Down

0 comments on commit c164270

Please sign in to comment.