Skip to content

Commit

Permalink
Bump to v5.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yannickl committed Jul 8, 2019
1 parent 83cceed commit 743fbf2
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 9 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ playground.xcworkspace

# Swift Package Manager
.build/
.swiftpm

# Carthage
Carthage/Build
Expand Down
2 changes: 1 addition & 1 deletion AwaitKit.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AwaitKit'
s.version = '5.1.0'
s.version = '5.2.0'
s.license = 'MIT'
s.summary = 'The ES8 Async/Await control flow for Swift '
s.homepage = 'https://github.com/yannickl/AwaitKit.git'
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change log

## [Version 5.2.0](https://github.com/yannickl/AwaitKit/releases/tag/5.2.0)
*Released on 2019-07-08.*

- Upgrade PromiseKit to the v6.10.0

## [Version 5.1.0](https://github.com/yannickl/AwaitKit/releases/tag/5.1.0)
*Released on 2019-01-17.*

Expand Down
2 changes: 1 addition & 1 deletion Cartfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github "mxcl/PromiseKit" ~> 6.8
github "mxcl/PromiseKit" ~> 6.10
2 changes: 1 addition & 1 deletion Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github "mxcl/PromiseKit" "6.8.4"
github "mxcl/PromiseKit" "6.10.0"
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version:4.0
// swift-tools-version:4.2
// The swift-tools-version declares the minimum version of Swift required to build this package.
/*
* AwaitKit
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Have you ever dream to write asynchronous code like its synchronous counterpart?

_AwaitKit_ is a powerful Swift library inspired by the [Async/Await specification in ES8 (ECMAScript 2017)](https://github.com/tc39/ecmascript-asyncawait) which provides a powerful way to write asynchronous code in a sequential manner.

Internally it uses [PromiseKit](https://github.com/mxcl/PromiseKit) v6.8 to create and manage promises.
Internally it uses [PromiseKit](https://github.com/mxcl/PromiseKit) v6.10 to create and manage promises.

<p align="center">
<a href="#requirements">Requirements</a> • <a href="#getting-started">Getting Started</a> • <a href="#usage">Usage</a> • <a href="#installation">Installation</a> • <a href="#contribution">Contribution</a> • <a href="#contact">Contact</a> • <a href="#license-mit">License</a>
Expand Down Expand Up @@ -162,7 +162,7 @@ $ touch Podfile
$ edit Podfile
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
pod 'AwaitKit', '~> 5.1.0'
pod 'AwaitKit', '~> 5.2.0'
```

Install into your project:
Expand All @@ -171,7 +171,7 @@ Install into your project:
$ pod install
```

If CocoaPods did not find the `PromiseKit 6.7` dependency execute this command:
If CocoaPods did not find the `PromiseKit 6.10` dependency execute this command:

```bash
$ pod repo update
Expand Down Expand Up @@ -214,7 +214,7 @@ $ brew install carthage
To integrate AwaitKit into your Xcode project using Carthage, specify it in your `Cartfile`:

```ogdl
github "yannickl/AwaitKit" ~> 5.1.0
github "yannickl/AwaitKit" ~> 5.2.0
```

Run `carthage update` to build the framework and drag the built `AwaitKit.framework` into your Xcode project.
Expand Down

0 comments on commit 743fbf2

Please sign in to comment.