Skip to content

Commit

Permalink
Prepare 0.2.1 (#37)
Browse files Browse the repository at this point in the history
* prepare 0.2.1

* readme
  • Loading branch information
mikekap authored Mar 21, 2021
1 parent a9e057f commit 44d98ca
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Next
## 0.2.1
- Added support for a UINT64 attribute type. (Closes #34)
- Broadcast discovery for all devices, even if one in the middle fails.
- Omit attributes from devices with unknown types.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cargo-features = ["strip"]

[package]
name = "wink-mqtt-rs"
version = "0.2.1-prerelease"
version = "0.2.1"
authors = ["Mike Kaplinskiy <mike.kaplinskiy@gmail.com>"]
edition = "2018"
license = "CC-BY-4.0"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ You can configure more options by editing the `/opt/wink-mqtt-rs/config` file af

## Options
```bash
wink-mqtt-rs 0.2.0
wink-mqtt-rs 0.2.1
Mike Kaplinskiy <mike.kaplinskiy@gmail.com>
wink hub v1 mqtt bridge

Expand Down
2 changes: 1 addition & 1 deletion release/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM ubuntu:20.04

WORKDIR /tmp/

RUN echo 2020-12-13
RUN echo 2021-03-21
RUN apt update && apt install -y build-essential curl wget
RUN wget -q https://musl.cc/arm-linux-musleabi-cross.tgz && tar -zxvf arm-linux-musleabi-cross.tgz --strip-components 1 -C /usr/local/
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
Expand Down
3 changes: 1 addition & 2 deletions src/syncer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ use slog::{crit, debug, error, info, trace, warn};
use slog_scope;
use std::collections::{HashMap, VecDeque};
use std::error::Error;
use std::future::Future;
use std::ops::Deref;
use std::sync::Arc;
use tokio::sync::Mutex;
Expand Down Expand Up @@ -363,7 +362,7 @@ impl<'a> DeviceSyncer {
}
Err(e) => {
crit!(slog_scope::logger(), "sending_failed_crashing_to_maybe_reconnect"; "error" => ?e);
panic!(e)
panic!("{:?}", e)
}
}
}
Expand Down

0 comments on commit 44d98ca

Please # to comment.