From aecc1ecc2a9f4e2730987bfc39e1861b0e228a32 Mon Sep 17 00:00:00 2001 From: Francis Lalonde Date: Wed, 13 Dec 2017 14:59:44 -0500 Subject: [PATCH] (cargo-release) start next development iteration 0.5.2-alpha.0 --- Cargo.lock | 20 ++++++++++---------- Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 119974a..6058bec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2,7 +2,7 @@ name = "aggregate_print" version = "0.0.0" dependencies = [ - "dipstick 0.5.1-alpha.0", + "dipstick 0.5.2-alpha.0", ] [[package]] @@ -34,14 +34,14 @@ dependencies = [ name = "counter_timer_gauge" version = "0.0.0" dependencies = [ - "dipstick 0.5.1-alpha.0", + "dipstick 0.5.2-alpha.0", ] [[package]] name = "custom_publish" version = "0.0.0" dependencies = [ - "dipstick 0.5.1-alpha.0", + "dipstick 0.5.2-alpha.0", ] [[package]] @@ -56,7 +56,7 @@ dependencies = [ [[package]] name = "dipstick" -version = "0.5.1-alpha.0" +version = "0.5.2-alpha.0" dependencies = [ "derivative 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", @@ -84,7 +84,7 @@ name = "graphite" version = "0.0.0" dependencies = [ "badlog 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dipstick 0.5.1-alpha.0", + "dipstick 0.5.2-alpha.0", ] [[package]] @@ -131,7 +131,7 @@ dependencies = [ name = "multi_print" version = "0.0.0" dependencies = [ - "dipstick 0.5.1-alpha.0", + "dipstick 0.5.2-alpha.0", ] [[package]] @@ -170,7 +170,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" name = "queued" version = "0.0.0" dependencies = [ - "dipstick 0.5.1-alpha.0", + "dipstick 0.5.2-alpha.0", ] [[package]] @@ -182,7 +182,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" name = "raw_sink" version = "0.0.0" dependencies = [ - "dipstick 0.5.1-alpha.0", + "dipstick 0.5.2-alpha.0", ] [[package]] @@ -211,14 +211,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" name = "scoped_print" version = "0.0.0" dependencies = [ - "dipstick 0.5.1-alpha.0", + "dipstick 0.5.2-alpha.0", ] [[package]] name = "static_metrics" version = "0.0.0" dependencies = [ - "dipstick 0.5.1-alpha.0", + "dipstick 0.5.2-alpha.0", "lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] diff --git a/Cargo.toml b/Cargo.toml index 631dc7f..afa10d2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ members = [ [package] name = "dipstick" -version = "0.5.1" +version = "0.5.2-alpha.0" authors = ["Francis Lalonde "] description = """A fast and modular metrics library decoupling app instrumentation from reporting backend. diff --git a/README.md b/README.md index 004f68d..21c7e93 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ A quick, modular metrics toolkit for Rust applications; similar to popular loggi but with counters, markers, gauges and timers. Dipstick's main attraction is the ability to send metrics to multiple customized outputs. -For example, captured metrics can be written to the immediately log _and_ +For example, captured metrics can be written immediately to the log _and_ sent over the network after a period of aggregation. Dipstick builds on stable Rust with minimal dependencies