Skip to content

Commit 583a709

Browse files
committed
Prepare version 0.9.3
1 parent 1b12d78 commit 583a709

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ This product uses [Semantic Versioning](https://semver.org/).
66
## [Unreleased]
77

88

9+
## [0.9.3]
10+
11+
## Added
12+
* [#119](https://github.com/davidstump/SwiftPhoenixClient/pull/119): A working implementation of Presence
13+
14+
15+
## Changed
16+
* [#120](https://github.com/davidstump/SwiftPhoenixClient/pull/120): Xcode 10 and Swift 4.2
17+
18+
19+
920
## [0.9.2]
1021

1122
## Fixed
@@ -56,7 +67,8 @@ Thanks to @murphb52 and @ALucasVanDongen for helping with some of the developmen
5667
* Mirror [Phoenix.js](https://hexdocs.pm/phoenix/js/) more closely
5768

5869

59-
[Unreleased]: https://github.com/davidstump/SwiftPhoenixClient/compare/0.9.2...HEAD
70+
[Unreleased]: https://github.com/davidstump/SwiftPhoenixClient/compare/0.9.3...HEAD
71+
[0.9.3]: https://github.com/davidstump/SwiftPhoenixClient/compare/0.9.2...0.9.3
6072
[0.9.2]: https://github.com/davidstump/SwiftPhoenixClient/compare/0.9.1...0.9.2
6173
[0.9.1]: https://github.com/davidstump/SwiftPhoenixClient/compare/0.9.0...0.9.1
6274
[0.9.0]: https://github.com/davidstump/SwiftPhoenixClient/compare/0.8.1...0.9.0

Sources/Channel.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public class Channel {
124124
self.joinPush.receive("timeout") { [weak self] (_) in
125125
guard let strongSelf = self else { return }
126126
guard !strongSelf.isJoining else { return }
127-
strongSelf.socket?.logItems("channel", "timeout \(strongSelf.topic) \(strongSelf.joinRef) after \(strongSelf.timeout)ms")
127+
strongSelf.socket?.logItems("channel", "timeout \(strongSelf.topic) \(strongSelf.joinRef ?? "") after \(strongSelf.timeout)ms")
128128

129129
let leavePush = Push(channel: strongSelf, event: ChannelEvent.leave, payload: [:], timeout: strongSelf.timeout)
130130
leavePush.send()

SwiftPhoenixClient.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88

99
Pod::Spec.new do |s|
1010
s.name = "SwiftPhoenixClient"
11-
s.version = "0.9.2"
11+
s.version = "0.9.3"
1212
s.summary = "Connect your Phoenix and iOS applications through WebSockets!"
13-
s.swift_version = "4.1"
13+
s.swift_version = "4.2"
1414

1515
# This description is used to generate tags and improve search results.
1616
# * Think: What does it do? Why did you write it? What is the focus?

0 commit comments

Comments
 (0)