Skip to content

Commit

Permalink
Version 1.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
int08h committed Oct 12, 2019
1 parent a043074 commit d714d4d
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 2 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
## Version 1.1.7

* Improved options for client output thanks to @zicklag (f1f834e8c).

By default the client now outputs just the time reported by the queried server.
The `-v` or `--verbose` flag will print additional information such as the response's
midpoint and radius. `-j` or `--json` outputs responses in JSON format instead.

Non-response text output is written to standard error to enable verbose output
while redirecting the response(s) to a file or pipe like so:

```
$ roughenough-client -v roughtime.int08h.com 2002 > time.txt
Requesting time from: "roughtime.int08h.com":2002
Received time from server: midpoint="Oct 08 2019 18:40:38", radius=1000000, verified=No (merkle_index=0)
$ cat time.txt
Oct 08 2019 18:40:38
```

## Version 1.1.6

* Fix several Clippy items (266f1adc9)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "roughenough"
version = "1.1.6"
version = "1.1.7"
repository = "https://github.com/int08h/roughenough"
authors = ["Stuart Stock <[email protected]>", "Aaron Hill <[email protected]>"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ pub use crate::message::RtMessage;
pub use crate::tag::Tag;

/// Version of Roughenough
pub const VERSION: &str = "1.1.6";
pub const VERSION: &str = "1.1.7";

/// Roughenough version string enriched with any compile-time optional features
pub fn roughenough_version() -> String {
Expand Down

0 comments on commit d714d4d

Please sign in to comment.