-
Notifications
You must be signed in to change notification settings - Fork 467
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
>Release date: 2015-10-10 [NEW] including tvOS with Cocoapods 0.39 [FIX] test coverage for topics containing 0x0000 [NEW] comment out tvOS until Cocoapods supports it [NEW] inbound throttling closes #54 [NEW] provide support for tvOS, OSX and iOS closes #50 [NEW] add messageDelivered delegate message in MQTTSessionManager closes #49 [FIX] clarification of changing subscriptions in MQTTSessionManager closes #47
- Loading branch information
Christoph Krey
committed
Oct 12, 2015
1 parent
88b5b60
commit 466e469
Showing
7 changed files
with
65 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,18 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "MQTTClient" | ||
s.version = "0.3.2" | ||
s.version = "0.3.3" | ||
s.summary = "iOS, OSX and tvOS native ObjectiveC MQTT Framework" | ||
s.homepage = "https://github.com/ckrey/MQTT-Client-Framework" | ||
s.license = { :type => "MIT", :file => "LICENSE" } | ||
s.author = { "Christoph Krey" => "krey.christoph@gmail.com" } | ||
s.source = { :git => "https://github.com/ckrey/MQTT-Client-Framework.git", :tag => "0.3.2" } | ||
s.source = { :git => "https://github.com/ckrey/MQTT-Client-Framework.git", :tag => "0.3.3" } | ||
|
||
s.source_files = "MQTTClient/MQTTClient", "MQTTClient/MQTTClient/**/*.{h,m}" | ||
s.requires_arc = true | ||
|
||
# s.platform = :ios, "6.1", :osx, "10.10", :tvos, "9.0" | ||
s.platform = :ios, "6.1", :osx, "10.10" | ||
s.platform = :ios, "6.1", :osx, "10.10", :tvos, "9.0" | ||
|
||
s.ios.deployment_target = "6.1" | ||
s.osx.deployment_target = "10.10" | ||
# s.tvos.deployment_target = "9.0" | ||
s.tvos.deployment_target = "9.0" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.