Skip to content

Commit 44d98ca

Browse files
authored
Prepare 0.2.1 (#37)
* prepare 0.2.1 * readme
1 parent a9e057f commit 44d98ca

File tree

6 files changed

+6
-7
lines changed

6 files changed

+6
-7
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Next
1+
## 0.2.1
22
- Added support for a UINT64 attribute type. (Closes #34)
33
- Broadcast discovery for all devices, even if one in the middle fails.
44
- Omit attributes from devices with unknown types.

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cargo-features = ["strip"]
22

33
[package]
44
name = "wink-mqtt-rs"
5-
version = "0.2.1-prerelease"
5+
version = "0.2.1"
66
authors = ["Mike Kaplinskiy <[email protected]>"]
77
edition = "2018"
88
license = "CC-BY-4.0"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ You can configure more options by editing the `/opt/wink-mqtt-rs/config` file af
2222

2323
## Options
2424
```bash
25-
wink-mqtt-rs 0.2.0
25+
wink-mqtt-rs 0.2.1
2626
Mike Kaplinskiy <[email protected]>
2727
wink hub v1 mqtt bridge
2828

release/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM ubuntu:20.04
22

33
WORKDIR /tmp/
44

5-
RUN echo 2020-12-13
5+
RUN echo 2021-03-21
66
RUN apt update && apt install -y build-essential curl wget
77
RUN wget -q https://musl.cc/arm-linux-musleabi-cross.tgz && tar -zxvf arm-linux-musleabi-cross.tgz --strip-components 1 -C /usr/local/
88
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y

src/syncer.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ use slog::{crit, debug, error, info, trace, warn};
1212
use slog_scope;
1313
use std::collections::{HashMap, VecDeque};
1414
use std::error::Error;
15-
use std::future::Future;
1615
use std::ops::Deref;
1716
use std::sync::Arc;
1817
use tokio::sync::Mutex;
@@ -363,7 +362,7 @@ impl<'a> DeviceSyncer {
363362
}
364363
Err(e) => {
365364
crit!(slog_scope::logger(), "sending_failed_crashing_to_maybe_reconnect"; "error" => ?e);
366-
panic!(e)
365+
panic!("{:?}", e)
367366
}
368367
}
369368
}

0 commit comments

Comments
 (0)