From 12a4821a0058dd6e1a0e4f6729a0f78fac291e0e Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Tue, 18 Jan 2022 14:11:56 -0800 Subject: [PATCH] subscriber: prepare to release v0.1.1 (#260) ## 0.1.1 (2022-01-18) #### Bug Fixes * only send *new* tasks/resources/etc over the event channel (#238) ([fdc77e28](fdc77e28)) * increased default event buffer capacity (#235) ([0cf0aee](0cf0aee)) * use saturating arithmetic for attribute updates (#234) ([fe82e170](fe82e170)) #### Changes * moved ID rewriting from `console-subscriber` to the client (#244) ([095b1ef](095b1ef)) --- Cargo.lock | 2 +- console-subscriber/CHANGELOG.md | 16 +++++++++++++++- console-subscriber/Cargo.toml | 4 ++-- 3 files changed, 18 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 249580ba8..a4ca99d12 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -218,7 +218,7 @@ dependencies = [ [[package]] name = "console-subscriber" -version = "0.1.0" +version = "0.1.1" dependencies = [ "console-api", "crossbeam-channel", diff --git a/console-subscriber/CHANGELOG.md b/console-subscriber/CHANGELOG.md index 2e208d553..4a4cb8e60 100644 --- a/console-subscriber/CHANGELOG.md +++ b/console-subscriber/CHANGELOG.md @@ -1,4 +1,18 @@ - + +## 0.1.1 (2022-01-18) + + +#### Bug Fixes + +* only send *new* tasks/resources/etc over the event channel (#238) ([fdc77e28](fdc77e28)) +* increased default event buffer capacity (#235) ([0cf0aee](0cf0aee)) +* use saturating arithmetic for attribute updates (#234) ([fe82e170](fe82e170)) + +#### Changes + +* moved ID rewriting from `console-subscriber` to the client (#244) ([095b1ef](095b1ef)) + ## 0.1.0 (2021-12-16) + - Initial release! 🎉 diff --git a/console-subscriber/Cargo.toml b/console-subscriber/Cargo.toml index 2a5bf961e..db6e1a1d7 100644 --- a/console-subscriber/Cargo.toml +++ b/console-subscriber/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "console-subscriber" -version = "0.1.0" +version = "0.1.1" license = "MIT" edition = "2021" rust-version = "1.56.0" @@ -33,7 +33,7 @@ parking_lot = ["parking_lot_crate", "tracing-subscriber/parking_lot"] tokio = { version = "^1.15", features = ["sync", "time", "macros", "tracing"] } tokio-stream = "0.1" thread_local = "1.1.3" -console-api = { version = "0.1.0", path = "../console-api", features = ["transport"] } +console-api = { version = "0.1.1", path = "../console-api", features = ["transport"] } tonic = { version = "0.6", features = ["transport"] } tracing-core = "0.1.18" tracing = "0.1.26"