Skip to content

Commit

Permalink
Bump to v5.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yannickl committed Jan 17, 2019
1 parent 50bbdb4 commit 0d65ad7
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: objective-c
osx_image: xcode9.2
osx_image: xcode10.1
env:
global:
- LC_CTYPE=en_US.UTF-8
Expand All @@ -11,7 +11,7 @@ env:

- DESTINATION="OS=10.0,name=Apple TV 1080p" RUN_TESTS="YES" RUN_CODECOV="NO"

- DESTINATION="OS=10.0,name=iPhone 6s" RUN_TESTS="YES" RUN_CODECOV="YES"
- DESTINATION="OS=12.0,name=iPhone XS" RUN_TESTS="YES" RUN_CODECOV="YES"
- DESTINATION="OS=9.0,name=iPad 2" RUN_TESTS="YES" RUN_CODECOV="YES"

- DESTINATION="arch=x86_64,platform=macOS" RUN_TESTS="YES" RUN_CODECOV="YES"
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.0.1'
s.version = '5.1.0'
s.license = 'MIT'
s.summary = 'The ES8 Async/Await control flow for Swift '
s.homepage = 'https://github.com/yannickl/AwaitKit.git'
Expand Down
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
# Change log

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

- Adding the 32bit architectures support (#21)
- Upgrade PromiseKit to the v6.7

## [Version 5.0.1](https://github.com/yannickl/AwaitKit/releases/tag/5.0.1)
*Released on 2018-09-20.*

- Fixing the Carthage.
- Fixing the Carthage dependency configuration.

## [Version 5.0.0](https://github.com/yannickl/AwaitKit/releases/tag/5.0.0)
*Released on 2018-03-03.*
Expand Down
2 changes: 1 addition & 1 deletion Example/Example/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>5.0.0</string>
<string>5.1.0</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>LSRequiresIPhoneOS</key>
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ let package = Package(
targets: ["AwaitKit"]),
],
dependencies: [
.package(url: "https://github.com/mxcl/PromiseKit.git", from: "6")
.package(url: "https://github.com/mxcl/PromiseKit.git", from: "6.7")
],
targets: [
.target(
Expand Down
10 changes: 5 additions & 5 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.4 to create and manage promises.
Internally it uses [PromiseKit](https://github.com/mxcl/PromiseKit) v6.7 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.0.1'
pod 'AwaitKit', '~> 5.1.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.0` dependency execute this command:
If CocoaPods did not find the `PromiseKit 6.7` dependency execute this command:

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

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

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

### Manually

[Download](https://github.com/YannickL/AwaitKit/archive/master.zip) the project and copy the `AwaitKit` folder into your project to use it in. Note that you also need to download the [PromiseKit](https://github.com/mxcl/PromiseKit) v6.2 library and import it to your project.
[Download](https://github.com/YannickL/AwaitKit/archive/master.zip) the project and copy the `AwaitKit` folder into your project to use it in. Note that you also need to download the [PromiseKit](https://github.com/mxcl/PromiseKit) v6.7 library and import it to your project.

## Contribution

Expand Down

0 comments on commit 0d65ad7

Please sign in to comment.