Skip to content

2.0.0

Compare
Choose a tag to compare
@kylef kylef released this 14 Nov 16:47
· 24 commits to master since this release

This release adds support for Swift 3.0.

Breaking

  • Responses now use a Download enum instead of an optional NSData. This
    means you must use the following API:

    .success(response, .noContent)
    .success(response, .content(data))

    Previously:

    .Success(response, nil)
    .Success(response, data)

Enhancements

  • Adds support for streaming stubbed response data.

    .success(response, .streamContent(data, inChunksOf: 1024))