From 821fdf1baecb21a1db59759d2135d56496a769e3 Mon Sep 17 00:00:00 2001 From: "Brian L. Troutwine" Date: Fri, 13 Jan 2017 08:49:51 -0800 Subject: [PATCH] Bump to 0.5.0 This release is a long time coming and closes the venerable 0.4.x series of development. Cernan has been put on a good foot for being open-sourced, has received significant optimizations and been given three new sinks and one new source. The changes are as follows: * ccced687 :: Telemetry now avoids allocing a CKMS if not needed * 3d88add3 :: mpsc is split out into the open-source hopper * 3937bc45 :: native protocol is introduced, Arc sprinkled throughout * 22668f42 :: Experimental InfluxDB sink is introduced * 47467664 :: Numerous small allocations in text sources are removed * f48403a7 :: Experimental Prometheus sink is introduced * 4b609f33 :: Cernan's internal data-model becomes that of native protocol * b1d482ff :: Aggregation optimizations, wrt cache access There were a few things I skipped in the above either because they were later supplanted or because it was hard to fit the summary in a short line. But that's the gist! Signed-off-by: Brian L. Troutwine --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b4802d76..60e10daf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ [root] name = "cernan" -version = "0.5.0-dev" +version = "0.5.0" dependencies = [ "bincode 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "byteorder 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index e6d4d2d6..4b70c234 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cernan" -version = "0.5.0-dev" +version = "0.5.0" authors = ["Brian L. Troutwine "] build = "build.rs"