From becc8bb3b603d8fe63176b0519736e50cf6ec1b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joe=CC=88l=20Ga=CC=88hwiler?= Date: Fri, 4 Dec 2015 17:14:55 +0100 Subject: [PATCH] bump version --- README.md | 2 +- library.properties | 2 +- src/YunMQTTClient.cpp | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7095005..8c70954 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ The first release of the library only supports QoS0 and the basic features to ge This library is an alternative to the [pubsubclient](https://github.com/knolleary/pubsubclient) library by [knolleary](https://github.com/knolleary) which uses a custom protocol implementation. -[Download version 1.9.0 of the library.](https://github.com/256dpi/arduino-mqtt/releases/download/v1.9.0/mqtt.zip) +[Download version 1.9.1 of the library.](https://github.com/256dpi/arduino-mqtt/releases/download/v1.9.1/mqtt.zip) *Or even better use the newly available Library Manager in the Arduino IDE.* diff --git a/library.properties b/library.properties index 8e9b7a3..bc88011 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=MQTT -version=1.9.0 +version=1.9.1 author=Joel Gaehwiler maintainer=Joel Gaehwiler sentence=MQTT library for Arduino based on the Eclipse Paho projects. diff --git a/src/YunMQTTClient.cpp b/src/YunMQTTClient.cpp index 2c4f24b..6654703 100644 --- a/src/YunMQTTClient.cpp +++ b/src/YunMQTTClient.cpp @@ -21,8 +21,8 @@ boolean YunMQTTClient::updateBridge() { Process p; int r1 = p.runShellCommand("mkdir -p /usr/arduino-mqtt"); - int r2 = p.runShellCommand("wget -N https://raw.githubusercontent.com/256dpi/arduino-mqtt/v1.9.0/yun/mqtt.py --no-check-certificate -P /usr/arduino-mqtt"); - int r3 = p.runShellCommand("wget -N https://raw.githubusercontent.com/256dpi/arduino-mqtt/v1.9.0/yun/bridge.py --no-check-certificate -P /usr/arduino-mqtt"); + int r2 = p.runShellCommand("wget -N https://raw.githubusercontent.com/256dpi/arduino-mqtt/v1.9.1/yun/mqtt.py --no-check-certificate -P /usr/arduino-mqtt"); + int r3 = p.runShellCommand("wget -N https://raw.githubusercontent.com/256dpi/arduino-mqtt/v1.9.1/yun/bridge.py --no-check-certificate -P /usr/arduino-mqtt"); return r1 == 0 && r2 == 0 && r3 == 0; }