From 7107384f50b0d1149c52f01a598e723f8861bfa5 Mon Sep 17 00:00:00 2001 From: "Brian L. Troutwine" Date: Fri, 7 Oct 2016 18:27:39 -0700 Subject: [PATCH] Bump to 0.4.1 This release puts timers and histograms onto the same time-accurate footing as other metric kinds, very useful when the underlying data- source is sparse, as has been observed. Some configuration changes have also been made--in a fully backward compatible fashion--but these are secondary to the time-accuracy modifications. Signed-off-by: Brian L. Troutwine --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 978b5171..0c55ccee 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,10 +1,10 @@ [root] name = "cernan" -version = "0.4.0" +version = "0.4.1" dependencies = [ "bincode 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "chrono 0.2.25 (registry+https://github.com/rust-lang/crates.io-index)", - "clap 2.13.0 (registry+https://github.com/rust-lang/crates.io-index)", + "clap 2.14.0 (registry+https://github.com/rust-lang/crates.io-index)", "dns-lookup 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "fern 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -103,7 +103,7 @@ dependencies = [ [[package]] name = "clap" -version = "2.13.0" +version = "2.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "ansi_term 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -951,7 +951,7 @@ dependencies = [ "checksum bytes 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c129aff112dcc562970abb69e2508b40850dd24c274761bb50fb8a0067ba6c27" "checksum cfg-if 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "de1e760d7b6535af4241fca8bd8adf68e2e7edacc6b29f5d399050c5e48cf88c" "checksum chrono 0.2.25 (registry+https://github.com/rust-lang/crates.io-index)" = "9213f7cd7c27e95c2b57c49f0e69b1ea65b27138da84a170133fd21b07659c00" -"checksum clap 2.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2887ae5b606c1fa314b9238e25a8be3fa673378415c32efc5749464f3365ee9d" +"checksum clap 2.14.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5fa304b03c49ccbb005784fc26e985b5d2310b1d37f2c311ce90dbcd18ea5fde" "checksum cookie 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0e3d6405328b6edb412158b3b7710e2634e23f3614b9bb1c412df7952489a626" "checksum dns-lookup 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "daef0c720fa2158f4cc9fba3e05a490b67d6165ad06fc2c90c6c62c0ddd0ced1" "checksum dtoa 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0dd841b58510c9618291ffa448da2e4e0f699d984d436122372f446dae62263d" diff --git a/Cargo.toml b/Cargo.toml index 64030cb2..f8e64633 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cernan" -version = "0.4.0" +version = "0.4.1" authors = ["Brian L. Troutwine "] build = "build.rs"