Skip to content

Commit 342af58

Browse files
committed
bump version
1 parent b8123b2 commit 342af58

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
@@ -10,7 +10,7 @@ The first release of the library only supports QoS0 and the basic features to ge
1010

1111
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.
1212

13-
[Download version 1.9.6 of the library.](https://github.com/256dpi/arduino-mqtt/releases/download/v1.9.6/mqtt.zip)
13+
[Download version 1.10.0 of the library.](https://github.com/256dpi/arduino-mqtt/releases/download/v1.10.0/mqtt.zip)
1414

1515
*Or even better use the Library Manager in the Arduino IDE.*
1616

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.6
2+
version=1.10.0
33
author=Joel Gaehwiler <[email protected]>
44
maintainer=Joel Gaehwiler <[email protected]>
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.6/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.6/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.10.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.10.0/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)