Skip to content

Commit 7a9b903

Browse files
committed
bump version (fixed gulp script)
1 parent de544ed commit 7a9b903

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

Gulpfile.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,25 @@ var gulp = require('gulp');
22
var del = require('del');
33
var zip = require('gulp-zip');
44

5-
gulp.task('clean', function(cb){
6-
del(['./build'], cb);
5+
gulp.task('clean', function(){
6+
return del(['./build']);
77
});
88

99
gulp.task('copy', ['clean'], function(){
1010
return gulp.src('./**/*')
1111
.pipe(gulp.dest('./build'));
1212
});
1313

14-
gulp.task('thin', ['copy'], function(cb){
15-
del([
14+
gulp.task('thin', ['copy'], function(){
15+
return del([
1616
'./build/update.sh',
1717
'./build/Gulpfile.js',
1818
'./build/package.json',
1919
'./build/node_modules',
2020
'./build/mqtt.zip',
2121
'./build/CMakeLists.txt',
2222
'./build/yun'
23-
], cb);
23+
]);
2424
});
2525

2626
gulp.task('compress', ['thin'], function () {

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This library bundles the [Embedded MQTT C/C++ Client](https://eclipse.org/paho/c
88

99
The first release of the library only supports QoS0 and the basic features to get going. In the next releases more of the features will be available. Please create an issue if you need a specific functionality.
1010

11-
[Download version 1.10.1 of the library.](https://github.com/256dpi/arduino-mqtt/releases/download/v1.10.1/mqtt.zip)
11+
[Download version 1.11.0 of the library.](https://github.com/256dpi/arduino-mqtt/releases/download/v1.11.0/mqtt.zip)
1212

1313
*Or even better use the 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.10.1
2+
version=1.11.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
@@ -25,11 +25,11 @@ boolean YunMQTTClient::updateBridge() {
2525
int r1 = p.runShellCommand(F("mkdir -p /usr/arduino-mqtt"));
2626
int r2 = p.runShellCommand(
2727
F("wget -N "
28-
"https://raw.githubusercontent.com/256dpi/arduino-mqtt/v1.10.1/yun/"
28+
"https://raw.githubusercontent.com/256dpi/arduino-mqtt/v1.11.0/yun/"
2929
"mqtt.py --no-check-certificate -P /usr/arduino-mqtt"));
3030
int r3 = p.runShellCommand(
3131
F("wget -N "
32-
"https://raw.githubusercontent.com/256dpi/arduino-mqtt/v1.10.1/yun/"
32+
"https://raw.githubusercontent.com/256dpi/arduino-mqtt/v1.11.0/yun/"
3333
"bridge.py --no-check-certificate -P /usr/arduino-mqtt"));
3434

3535
return r1 == 0 && r2 == 0 && r3 == 0;

0 commit comments

Comments
 (0)