Skip to content
This repository was archived by the owner on Dec 2, 2022. It is now read-only.

Commit 0eb9ea3

Browse files
committed
3.1.11
1 parent 8865376 commit 0eb9ea3

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

Cartfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
github "https://github.com/daltoniam/Starscream" == 2.0.3
2-
github "https://github.com/pvzig/swifter" == 1.3.3
2+
github "https://github.com/httpswift/swifter" == 1.3.3

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ let package = Package(
44
name: "SlackKit",
55
targets: [],
66
dependencies: [
7-
.Package(url: "https://github.com/pvzig/swifter", majorVersion: 1),
7+
.Package(url: "https://github.com/httpswift/swifter", majorVersion: 1),
88
.Package(url: "https://github.com/daltoniam/Starscream", majorVersion: 2)
99
]
1010
)

Podfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ use_frameworks!
44

55
target 'SlackKit OS X' do
66
pod 'Starscream', '~> 2.0.3'
7-
pod 'Swifter'
7+
pod 'Swifter', '~> 1.3.3'
88
end
99

1010
target 'SlackKit iOS' do
1111
pod 'Starscream', '~> 2.0.3'
12-
pod 'Swifter'
12+
pod 'Swifter', '~> 1.3.3'
1313
end
1414

1515
target 'SlackKit tvOS' do
1616
pod 'Starscream', '~> 2.0.3'
17-
pod 'Swifter'
17+
pod 'Swifter', '~> 1.3.3'
1818
end

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
![SlackKit](https://cloud.githubusercontent.com/assets/8311605/10260893/5ec60f96-694e-11e5-91fd-da6845942201.png)
22

3-
![Swift Version](https://img.shields.io/badge/Swift-3.0-orange.svg) ![Plaforms](https://img.shields.io/badge/Platforms-macOS,iOS,tvOS-lightgrey.svg) ![License MIT](https://img.shields.io/badge/License-MIT-lightgrey.svg) [![CocoaPods compatible](https://img.shields.io/badge/CocoaPods-compatible-brightgreen.svg)](https://cocoapods.org) [![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-brightgreen.svg)](https://github.com/Carthage/Carthage) [![SwiftPM compatible](https://img.shields.io/badge/SwiftPM-compatible-brightgreen.svg)](https://github.com/apple/swift-package-manager)
3+
![Swift Version](https://img.shields.io/badge/Swift-3.0.2-orange.svg) ![Plaforms](https://img.shields.io/badge/Platforms-macOS,iOS,tvOS-lightgrey.svg) ![License MIT](https://img.shields.io/badge/License-MIT-lightgrey.svg) [![CocoaPods compatible](https://img.shields.io/badge/CocoaPods-compatible-brightgreen.svg)](https://cocoapods.org) [![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-brightgreen.svg)](https://github.com/Carthage/Carthage) [![SwiftPM compatible](https://img.shields.io/badge/SwiftPM-compatible-brightgreen.svg)](https://github.com/apple/swift-package-manager)
44
## SlackKit: A Swift Slack Client Library
55
### Description
66

@@ -18,7 +18,7 @@ To build the SlackKit project directly, first build the dependencies using Carth
1818
Add SlackKit to your pod file:
1919
```
2020
use_frameworks!
21-
pod 'SlackKit', '~> 3.1.10'
21+
pod 'SlackKit', '~> 3.1.11'
2222
```
2323
and run
2424
```

Sources/SlackKit/NetworkInterface.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ internal struct NetworkInterface {
4848
}
4949

5050
internal func customRequest(_ url: String, data: Data, success: @escaping (Bool)->Void, errorClosure: @escaping (SlackError)->Void) {
51-
guard let url = URL(string: url.removePercentEncoding()) else {
51+
guard let string = url.removingPercentEncoding, let url = URL(string: string) else {
5252
errorClosure(SlackError.clientNetworkError)
5353
return
5454
}

Supporting Files/Info-iOS.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>3.1.10</string>
18+
<string>3.1.11</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

Supporting Files/Info-tvOS.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>3.1.10</string>
18+
<string>3.1.11</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)