Skip to content

Commit

Permalink
Bump cernan to 0.2.5
Browse files Browse the repository at this point in the history
This commit marks the release of 0.2.5. In this release we:

  * bind to both IPv4 / IPv6 sockets on source ports
  * re-enable CLI configuration for backward compatibility
  * enable DNS lookups for wavefront backend host
  * adapt lazy evaluation of UTC::now to strict evaluation

Signed-off-by: Brian L. Troutwine <blt@postmates.com>
  • Loading branch information
Brian L. Troutwine committed Aug 9, 2016
1 parent 9ba7aa0 commit 99f081d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
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
@@ -1,6 +1,6 @@
[package]
name = "cernan"
version = "0.2.4"
version = "0.2.5"
authors = ["Brian L. Troutwine <blt@postmates.com>"]
build = "build.rs"

Expand Down
4 changes: 1 addition & 3 deletions src/backends/wavefront.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,7 @@ impl Wavefront {
points: Vec::new(),
}
}
Err(_) => {
panic!("Could not lookup host")
}
Err(_) => panic!("Could not lookup host"),
}
}

Expand Down

0 comments on commit 99f081d

Please sign in to comment.