Skip to content

Commit

Permalink
Prepare version 0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dsrees committed Jan 17, 2019
1 parent 1b12d78 commit 583a709
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ This product uses [Semantic Versioning](https://semver.org/).
## [Unreleased]


## [0.9.3]

## Added
* [#119](https://github.com/davidstump/SwiftPhoenixClient/pull/119): A working implementation of Presence


## Changed
* [#120](https://github.com/davidstump/SwiftPhoenixClient/pull/120): Xcode 10 and Swift 4.2



## [0.9.2]

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


[Unreleased]: https://github.com/davidstump/SwiftPhoenixClient/compare/0.9.2...HEAD
[Unreleased]: https://github.com/davidstump/SwiftPhoenixClient/compare/0.9.3...HEAD
[0.9.3]: https://github.com/davidstump/SwiftPhoenixClient/compare/0.9.2...0.9.3
[0.9.2]: https://github.com/davidstump/SwiftPhoenixClient/compare/0.9.1...0.9.2
[0.9.1]: https://github.com/davidstump/SwiftPhoenixClient/compare/0.9.0...0.9.1
[0.9.0]: https://github.com/davidstump/SwiftPhoenixClient/compare/0.8.1...0.9.0
Expand Down
2 changes: 1 addition & 1 deletion Sources/Channel.swift
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public class Channel {
self.joinPush.receive("timeout") { [weak self] (_) in
guard let strongSelf = self else { return }
guard !strongSelf.isJoining else { return }
strongSelf.socket?.logItems("channel", "timeout \(strongSelf.topic) \(strongSelf.joinRef) after \(strongSelf.timeout)ms")
strongSelf.socket?.logItems("channel", "timeout \(strongSelf.topic) \(strongSelf.joinRef ?? "") after \(strongSelf.timeout)ms")

let leavePush = Push(channel: strongSelf, event: ChannelEvent.leave, payload: [:], timeout: strongSelf.timeout)
leavePush.send()
Expand Down
4 changes: 2 additions & 2 deletions SwiftPhoenixClient.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@

Pod::Spec.new do |s|
s.name = "SwiftPhoenixClient"
s.version = "0.9.2"
s.version = "0.9.3"
s.summary = "Connect your Phoenix and iOS applications through WebSockets!"
s.swift_version = "4.1"
s.swift_version = "4.2"

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

0 comments on commit 583a709

Please sign in to comment.