Skip to content

Releases: ReactKit/SwiftTask

2.6.0

26 Jan 00:39
Compare
Choose a tag to compare

2.5.0

26 Jan 00:41
Compare
Choose a tag to compare
  • Added clone()
  • Improved lazy evaluation (when paused-init then resume())

2.4.0

26 Jan 00:43
Compare
Choose a tag to compare
  • Fixed not to propagate pause/resume/cancel to upstream
  • Added name() (set name)
  • Added Carthage 0.5 support

2.3.0

26 Jan 00:46
Compare
Choose a tag to compare
  • Added paused-init feature
  • Fixed Carthage 0.3 build

2.2.0

26 Jan 00:48
Compare
Choose a tag to compare
  • Added Carthage 0.3 support

2.1.0

26 Jan 00:36
Compare
Choose a tag to compare
  • added retryable feature try()

2.0.0

19 Nov 23:29
Compare
Choose a tag to compare

Ver 2.0.0 improves Swift's type-inference by adding success() method
to reduce too many overloads on then() method.

  • task.progress()'s progressClosure type changed from Progress -> Void to (oldProgress: Progress?, newProgress: Progress) -> Void
  • task.then(fulfilledClosure) is renamed to task.success()
  • task.catch(catchClosure) is renamed to task.failure()
  • task.then() is no longer used for fulfilled-only handling

See #8 for more information.