Skip to content

Commit

Permalink
v7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Kemp committed Apr 16, 2019
1 parent dd789bb commit 9efbac1
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 7 deletions.
20 changes: 19 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,25 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased](https://github.com/pusher/pusher-websocket-swift/compare/6.1.0...HEAD)
## [Unreleased](https://github.com/pusher/pusher-websocket-swift/compare/7.0.0...HEAD)

## [7.0.0](https://github.com/pusher/pusher-websocket-swift/compare/6.1.0...7.0.0) - 2019-04-16

### Changed

- Updated to Swift 4.2.
- Updated dependencies to newer versions, but pinned dependencies before any Swift 5 versions for compatibility with older versions of Xcode ([@cowgp](https://github.com/cowgp)).

### Removed

- Removed push notifications beta (replaced by [Pusher Beams](https://pusher.com/beams) which has its own libraries).
- Removed TaskQueue dependency (used by push notifications beta).

### Fixed

- Fixed issues compiling the library with Swift 5/Xcode 10.2.
- Fixed issue related to the capturing of self in Reachability callbacks ([@PorterHoskins](https://github.com/PorterHoskins)).
- Fixed unreliable tests.

## [6.1.0](https://github.com/pusher/pusher-websocket-swift/compare/6.0.0...6.1.0) - 2018-05-18

Expand Down
2 changes: 1 addition & 1 deletion PusherSwift.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'PusherSwift'
s.version = '6.1.0'
s.version = '7.0.0'
s.summary = 'A Pusher client library in Swift'
s.homepage = 'https://github.com/pusher/pusher-websocket-swift'
s.license = 'MIT'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
use_frameworks!

pod 'PusherSwift', '~> 5.0'
pod 'PusherSwift', '~> 7.0'
```

Then, run the following command:
Expand Down
2 changes: 1 addition & 1 deletion Sources/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>6.1.0</string>
<string>7.0.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Sources/PusherSwift.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Foundation
import Starscream

let PROTOCOL = 7
let VERSION = "6.1.0"
let VERSION = "7.0.0"
let CLIENT_NAME = "pusher-websocket-swift"

@objcMembers
Expand Down
2 changes: 1 addition & 1 deletion Tests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>6.1.0</string>
<string>7.0.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Tests/PusherClientInitializationTests.swift
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import PusherSwift
import XCTest

let VERSION = "6.1.0"
let VERSION = "7.0.0"

class ClientInitializationTests: XCTestCase {
var key: String!
Expand Down

0 comments on commit 9efbac1

Please sign in to comment.