Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix SocketRocket version to 0.5.1 #598

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions MQTTClient.podspec
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
Pod::Spec.new do |mqttc|
mqttc.name = "MQTTClient"
mqttc.version = "0.15.3"
mqttc.version = "0.15.4"
mqttc.summary = "iOS, macOS and tvOS native ObjectiveC MQTT Client Framework"
mqttc.homepage = "https://github.com/novastone-media/MQTT-Client-Framework"
mqttc.license = { :type => "EPLv1", :file => "LICENSE" }
mqttc.author = { "novastonemedia" => "[email protected]" }
mqttc.source = {
:git => "https://github.com/novastone-media/MQTT-Client-Framework.git",
:tag => "0.15.2",
:tag => "0.15.4",
:submodules => true
}

Expand Down Expand Up @@ -91,15 +91,15 @@ Pod::Spec.new do |mqttc|

mqttc.subspec 'Websocket' do |ws|
ws.source_files = "MQTTClient/MQTTClient/MQTTWebsocketTransport/*.{h,m}"
ws.dependency 'SocketRocket'
ws.dependency 'SocketRocket', '0.5.1'
ws.dependency 'MQTTClient/Min'
ws.requires_arc = true
ws.libraries = "icucore"
end

mqttc.subspec 'WebsocketL' do |wsl|
wsl.source_files = "MQTTClient/MQTTClient/MQTTWebsocketTransport/*.{h,m}"
wsl.dependency 'SocketRocket'
wsl.dependency 'SocketRocket', '0.5.1'
wsl.dependency 'MQTTClient/MinL'
wsl.requires_arc = true
wsl.libraries = "icucore"
Expand Down