Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
yannickl committed Jan 23, 2018
1 parent f8b776e commit ab45705
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 12 deletions.
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 = '3.0.2'
s.version = '4.0.0'
s.license = 'MIT'
s.summary = 'The ES8 Async/Await control flow for Swift '
s.homepage = 'https://github.com/yannickl/AwaitKit.git'
Expand Down
4 changes: 2 additions & 2 deletions AwaitKit.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@
CODE_SIGN_IDENTITY = "";
DEFINES_MODULE = YES;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = "$(SRCROOT)/Sources/Info.plist";
INFOPLIST_FILE = "$(SRCROOT)/Sources/AwaitKit/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_DYLIB_INSTALL_NAME = "$(DYLIB_INSTALL_NAME_BASE:standardizepath)/$(EXECUTABLE_PATH)";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
Expand All @@ -487,7 +487,7 @@
CODE_SIGN_IDENTITY = "";
DEFINES_MODULE = YES;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = "$(SRCROOT)/Sources/Info.plist";
INFOPLIST_FILE = "$(SRCROOT)/Sources/AwaitKit/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_DYLIB_INSTALL_NAME = "$(DYLIB_INSTALL_NAME_BASE:standardizepath)/$(EXECUTABLE_PATH)";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
# Change log

## [Version 4.0.0](https://github.com/yannickl/AwaitKit/releases/tag/4.0.0)
*Released on 2018-01-23.*

**Swift 4 supports**

## [Version 3.0.1](https://github.com/yannickl/AwaitKit/releases/tag/3.0.1)
*Released on 2017-08-10.*

- [FIX] replacing the `DispatchTime(uptimeNanoseconds: UInt64.max` by `DispatchTime.distantFuture`
- [FIX] replacing the `DispatchTime(uptimeNanoseconds: UInt64.max)` by `DispatchTime.distantFuture`

## [Version 3.0.0](https://github.com/yannickl/AwaitKit/releases/tag/3.0.0)
*Released on 2017-04-20.*
Expand Down
2 changes: 0 additions & 2 deletions Example/Podfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!

pod 'PromiseKit', '~> 4.5'

target 'Example' do
platform :ios, '8.0'

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: "4.3.0")
.package(url: "https://github.com/mxcl/PromiseKit.git", from: "4.5.1")
],
targets: [
.target(
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Internally it uses [PromiseKit](https://github.com/mxcl/PromiseKit) to create an

- iOS 8.0+
- Xcode 8.0+
- Swift 3.0+
- Swift 4.0+

## Getting Started

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', '~> 3.0.1'
pod 'AwaitKit', '~> 4.0.0'
```

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

If CocoaPods did not find the `PromiseKit 4.1.8` dependency execute this command:
If CocoaPods did not find the `PromiseKit 4.5.1` 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" ~> 3.0
github "yannickl/AwaitKit" ~> 4.0
```

Run `carthage update` to build the framework and drag the built `AwaitKit.framework` into your Xcode project.
Expand Down
2 changes: 1 addition & 1 deletion Sources/AwaitKit/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>3.0.2</string>
<string>4.0.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit ab45705

Please sign in to comment.