File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = "BAPromise"
3
- s . version = "3.0.6 "
3
+ s . version = "3.0.7 "
4
4
s . summary = "Objective C Promise Library"
5
5
s . description = <<-DESC
6
6
Swift Promise Library. An alternative to NSOperation for asynchronous operations.
Original file line number Diff line number Diff line change @@ -275,7 +275,7 @@ extension Promise {
275
275
276
276
// Join
277
277
extension Array {
278
- func when< ValueType> ( ) -> Promise < Array < ValueType > > where Element == Promise < ValueType > {
278
+ public func when< ValueType> ( ) -> Promise < Array < ValueType > > where Element == Promise < ValueType > {
279
279
guard self . count > 0 else { return Promise < Array < ValueType > > ( [ ] ) }
280
280
var cancelTokens = [ PromiseCancelToken] ( )
281
281
@@ -309,7 +309,7 @@ extension Array {
309
309
return returnedPromise
310
310
}
311
311
312
- func join < ValueType> ( ) -> Promise < Array < PromiseResult < ValueType > > > where Element == Promise < ValueType > {
312
+ public func join < ValueType> ( ) -> Promise < Array < PromiseResult < ValueType > > > where Element == Promise < ValueType > {
313
313
guard self . count > 0 else { return Promise < Array < PromiseResult < ValueType > > > ( [ ] ) }
314
314
var cancelTokens = [ PromiseCancelToken] ( )
315
315
You can’t perform that action at this time.
0 commit comments