Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
256dpi committed Nov 17, 2015
1 parent ef71359 commit f65c9e6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.0 of the library.](https://github.com/256dpi/arduino-mqtt/releases/download/v1.8.0/mqtt.zip)
[Download version 1.8.1 of the library.](https://github.com/256dpi/arduino-mqtt/releases/download/v1.8.1/mqtt.zip)

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

Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=MQTT
version=1.8.0
version=1.8.1
author=Joel Gaehwiler <joel.gaehwiler@gmail.com>
maintainer=Joel Gaehwiler <joel.gaehwiler@gmail.com>
sentence=MQTT library for Arduino based on the Eclipse Paho projects.
Expand Down
4 changes: 2 additions & 2 deletions src/YunMQTTClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.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.8.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.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");

return r1 == 0 && r2 == 0 && r3 == 0;
}
Expand Down

0 comments on commit f65c9e6

Please sign in to comment.