From 99f081d6bd874807bb859e564db43d67bfe9879e Mon Sep 17 00:00:00 2001 From: "Brian L. Troutwine" Date: Tue, 9 Aug 2016 10:44:33 -0700 Subject: [PATCH] Bump cernan to 0.2.5 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 --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/backends/wavefront.rs | 4 +--- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cb1286da..9884c379 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ [root] name = "cernan" -version = "0.2.4" +version = "0.2.5" dependencies = [ "chrono 0.2.25 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.10.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index f1e6a32e..451faa59 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cernan" -version = "0.2.4" +version = "0.2.5" authors = ["Brian L. Troutwine "] build = "build.rs" diff --git a/src/backends/wavefront.rs b/src/backends/wavefront.rs index 1062b983..9a89c023 100644 --- a/src/backends/wavefront.rs +++ b/src/backends/wavefront.rs @@ -42,9 +42,7 @@ impl Wavefront { points: Vec::new(), } } - Err(_) => { - panic!("Could not lookup host") - } + Err(_) => panic!("Could not lookup host"), } }