Skip to content

Commit 705b1ea

Browse files
committedSep 21, 2017
[NEW] version 0.9.9
1 parent 85c7fa4 commit 705b1ea

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed
 

‎CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
MQTT-Client-Framework iOS/OSX/tvOS Release Notes
22
================================================
33

4+
## MQTT-Client-Framework 0.9.9
5+
> Release date 2017-09-21
6+
[FIX] added connectTo: version for backward compatibility to MQTTSessionManager
7+
Merge pull request #373 from kirillyakimovich/session_manager_reconnection_tests
8+
Session manager reconnection test
9+
Add run loop parameter
10+
1. Removes conditional duplicated logic if on main thread - context.performAndWait is enough
11+
2. Uses only one background context - Before even if this object was created from background queue it was using parent main context which would block main thread.
12+
[session_manager_reconnection_tests] [UPD] if session manager is connected, we're not trying to connect again
413

514
## MQTT-Client-Framework 0.9.8
615
> Release date 2017-09-20

‎MQTTClient.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
Pod::Spec.new do |mqttc|
22
mqttc.name = "MQTTClient"
3-
mqttc.version = "0.9.8"
3+
mqttc.version = "0.9.9"
44
mqttc.summary = "iOS, OSX and tvOS native ObjectiveC MQTT Client Framework"
55
mqttc.homepage = "https://github.com/ckrey/MQTT-Client-Framework"
66
mqttc.license = { :type => "EPLv1", :file => "LICENSE" }
77
mqttc.author = { "Christoph Krey" => "krey.christoph@gmail.com" }
88
mqttc.source = {
99
:git => "https://github.com/ckrey/MQTT-Client-Framework.git",
10-
:tag => "0.9.8",
10+
:tag => "0.9.9",
1111
:submodules => true
1212
}
1313

0 commit comments

Comments
 (0)
Please sign in to comment.