Skip to content

Commit

Permalink
feat: temporarily fix iOS16 bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
leeway1208 committed Sep 19, 2022
1 parent 15d0826 commit 8a719ba
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cartfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
github "robbiehanson/CocoaAsyncSocket" "7.6.5"
github "leeway1208/CocoaAsyncSocket" "1.0.1"
github "daltoniam/Starscream" "3.1.1"
6 changes: 3 additions & 3 deletions CocoaMQTT.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "CocoaMQTT"
s.version = "2.0.5"
s.version = "2.0.6"
s.summary = "MQTT v3.1.1 client library for iOS and OS X written with Swift 5"
s.homepage = "https://github.com/emqx/CocoaMQTT"
s.license = { :type => "MIT" }
Expand All @@ -12,11 +12,11 @@ Pod::Spec.new do |s|
s.ios.deployment_target = "9.0"
s.tvos.deployment_target = "10.0"
# s.watchos.deployment_target = "2.0"
s.source = { :git => "https://github.com/emqx/CocoaMQTT.git", :tag => "2.0.5"}
s.source = { :git => "https://github.com/emqx/CocoaMQTT.git", :tag => "2.0.6"}
s.default_subspec = 'Core'

s.subspec 'Core' do |ss|
ss.dependency "CocoaAsyncSocket", "~> 7.6.5"
ss.dependency "MqttCocoaAsyncSocket", "~> 1.0.1"
ss.source_files = "Source/*.swift"
ss.exclude_files = "Source/CocoaMQTTWebSocket.swift"
end
Expand Down
2 changes: 1 addition & 1 deletion Source/CocoaMQTT.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//

import Foundation
import CocoaAsyncSocket
import MqttCocoaAsyncSocket

/**
* Conn Ack
Expand Down
2 changes: 1 addition & 1 deletion Source/CocoaMQTT5.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//

import Foundation
import CocoaAsyncSocket
import MqttCocoaAsyncSocket

/**
* Connection State
Expand Down
2 changes: 1 addition & 1 deletion Source/CocoaMQTTSocket.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//

import Foundation
import CocoaAsyncSocket
import MqttCocoaAsyncSocket

// MARK: - Interfaces

Expand Down

1 comment on commit 8a719ba

@niggeulimann
Copy link

@niggeulimann niggeulimann commented on 8a719ba Sep 20, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Carthage (using master as described in the docs) is also broken.

Please sign in to comment.