diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ea05062..6dbf1d6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,19 @@ MQTT-Client-Framework iOS/OSX/tvOS Release Notes ================================================ +## MQTT-Client-Framework 0.9.0 +> Release date 2017-05-10 + +[FIX] Fix random crashes on core data persistence #314 +[FIX] use_frameworks! +[FIX] Swift Tests output +[FIX] CONNACK return codes +[NEW] access publish data back messageDelivered is called? closes #296 +[FIX] XCode 8.3.1 warnings and documentation +[NEW] MQTT v5 properties +[FIX] Reset PUBLISH/PUBREL command's deadline interval when connection closed #302 +[NEW] initial version 5 + ## MQTT-Client-Framework 0.8.8 > Release date 2017-04-03 diff --git a/MQTTClient.podspec b/MQTTClient.podspec index 5ee023f4..1cc6d352 100644 --- a/MQTTClient.podspec +++ b/MQTTClient.podspec @@ -1,13 +1,13 @@ Pod::Spec.new do |mqttc| mqttc.name = "MQTTClient" - mqttc.version = "0.8.8" + mqttc.version = "0.9.0" mqttc.summary = "iOS, OSX and tvOS native ObjectiveC MQTT Client Framework" mqttc.homepage = "https://github.com/ckrey/MQTT-Client-Framework" mqttc.license = { :type => "EPLv1", :file => "LICENSE" } mqttc.author = { "Christoph Krey" => "krey.christoph@gmail.com" } mqttc.source = { :git => "https://github.com/ckrey/MQTT-Client-Framework.git", - :tag => "0.8.8", + :tag => "0.9.0", :submodules => true }