Skip to content

Commit

Permalink
HOTFIX: Oh boy I sure hope this is the last one of these. The 'future…
Browse files Browse the repository at this point in the history
…' property on Promise was not public. It is now. Fixed.
  • Loading branch information
jakeHawkenGeocaching committed Oct 23, 2017
1 parent 0e826cf commit 0d2f42f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Concurrency.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Concurrency'
s.version = '1.0.2'
s.version = '1.0.3'
s.summary = 'A small toolkit for handling concurrency in Swift.'

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion Concurrency/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0.2</string>
<string>1.0.3</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>LSRequiresIPhoneOS</key>
Expand Down
2 changes: 1 addition & 1 deletion Source/Promise.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import Foundation

public class Promise<T> {

let future = Future<T>()
public let future = Future<T>()

public init() {}

Expand Down

0 comments on commit 0d2f42f

Please sign in to comment.