Skip to content

Commit becc8bb

Browse files
committed
bump version
1 parent a158faf commit becc8bb

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The first release of the library only supports QoS0 and the basic features to ge
88

99
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.
1010

11-
[Download version 1.9.0 of the library.](https://github.com/256dpi/arduino-mqtt/releases/download/v1.9.0/mqtt.zip)
11+
[Download version 1.9.1 of the library.](https://github.com/256dpi/arduino-mqtt/releases/download/v1.9.1/mqtt.zip)
1212

1313
*Or even better use the newly available Library Manager in the Arduino IDE.*
1414

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=MQTT
2-
version=1.9.0
2+
version=1.9.1
33
author=Joel Gaehwiler <joel.gaehwiler@gmail.com>
44
maintainer=Joel Gaehwiler <joel.gaehwiler@gmail.com>
55
sentence=MQTT library for Arduino based on the Eclipse Paho projects.

src/YunMQTTClient.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ boolean YunMQTTClient::updateBridge() {
2121
Process p;
2222

2323
int r1 = p.runShellCommand("mkdir -p /usr/arduino-mqtt");
24-
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");
25-
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");
24+
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");
25+
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");
2626

2727
return r1 == 0 && r2 == 0 && r3 == 0;
2828
}

0 commit comments

Comments
 (0)