diff --git a/README.md b/README.md index bc609f1..6103b5a 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.8.1 of the library.](https://github.com/256dpi/arduino-mqtt/releases/download/v1.8.1/mqtt.zip) +[Download version 1.8.2 of the library.](https://github.com/256dpi/arduino-mqtt/releases/download/v1.8.2/mqtt.zip) *Or even better use the newly available Library Manager in the Arduino IDE.* diff --git a/library.properties b/library.properties index dbe5a3c..e7b268e 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=MQTT -version=1.8.1 +version=1.8.2 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 ecc0be3..965bc28 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.8.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.8.1/yun/bridge.py --no-check-certificate -P /usr/arduino-mqtt"); + int r2 = p.runShellCommand("wget -N https://raw.githubusercontent.com/256dpi/arduino-mqtt/v1.8.2/yun/mqtt.py --no-check-certificate -P /usr/arduino-mqtt"); + int r3 = p.runShellCommand("wget -N https://raw.githubusercontent.com/256dpi/arduino-mqtt/v1.8.2/yun/bridge.py --no-check-certificate -P /usr/arduino-mqtt"); return r1 == 0 && r2 == 0 && r3 == 0; }