All Versions
28
Latest Version
Avg Release Cycle
93 days
Latest Release
1570 days ago

Changelog History
Page 1

  • v5.1.0 Changes

    January 08, 2020

    ๐Ÿ‘ 1. Support Combine framework with new .publisher() method

  • v5.0.0 Changes

    March 26, 2019
    1. Built with Swift 5.0
  • v4.0.0 Changes

    November 17, 2018
    1. Built with Swift 4.2
  • v3.0.0 Changes

    August 16, 2018
    1. On iOS 10+ and macOS 10.12+ the locking mechanism for Promise is backed by os_unfair_lock bringing a significant performance improvement. On prior versions of iOS and macOS the locking mechanism falls back to a serial DispatchQueue
    2. Expose a new Lock class that hides the implementation detail of the underlying lock, preferring os_unfair_lock when available, and falling back to a serial DispatchQueue when it's not.
  • v2.4.0 Changes

    March 16, 2018
    1. Add Promise.cancel
    2. Add Promise { resolve, reject, onCancel in }
  • v2.3.0 Changes

    March 16, 2018

    ๐Ÿš€ 1. Bad release - see v2.4.0

  • v2.2.0 Changes

    February 02, 2018
    1. Add Promise.tapCatch
  • v2.1.0 Changes

    January 19, 2018
    1. Add Promise.return ๐Ÿ‘ 2. Support CocoaPods v1.4.0 ๐Ÿ“ฆ 3. Support Swift Package Manager ๐Ÿ“š 4. Hosted documentation generated with Jazzy
  • v2.0.1 Changes

    October 17, 2017

    ๐Ÿ“ฆ 1. Add missing Foundation imports for Swift Package Manager

  • v2.0.0 Changes

    September 26, 2017
    1. Swift 4 and Xcode 9
    2. Renamed catchThen to recover โœ… 3. Added Promise/A+ test suite