From 398cbcf6c25f2dfbc7f502c8b2878c094ece1920 Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Fri, 18 Feb 2022 09:15:59 -0800 Subject: [PATCH] chore(subscriber): prepare to release v0.1.3 #### Features * add `Builder::filter_env_var` builder parameter (#276) ([dbdb1494](dbdb1494), closes [#206](206)) #### Bug Fixes * record timestamps for updates last (#289) ([703f1aa4](703f1aa4), closes [#266](266)) * use monotonic `Instant`s for all timestamps (#288) ([abc08300](abc08300), closes [#286](286)) * bail rather than panic when encountering clock skew (#287) ([24db8c60](24db8c60), closes [#286](286)) * fix compilation on targets without 64-bit atomics (#282) ([5590fdbc](5590fdbc), closes [#279](279)) --- Cargo.lock | 2 +- console-subscriber/CHANGELOG.md | 16 ++++++++++++++++ console-subscriber/Cargo.toml | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9b2bfdcd0..388b6b6b9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -218,7 +218,7 @@ dependencies = [ [[package]] name = "console-subscriber" -version = "0.1.2" +version = "0.1.3" dependencies = [ "console-api", "crossbeam-channel", diff --git a/console-subscriber/CHANGELOG.md b/console-subscriber/CHANGELOG.md index a3807c931..1564f8bc5 100644 --- a/console-subscriber/CHANGELOG.md +++ b/console-subscriber/CHANGELOG.md @@ -1,3 +1,19 @@ + +## 0.1.3 (2022-02-18) + + +#### Features + +* add `Builder::filter_env_var` builder parameter (#276) ([dbdb1494](dbdb1494), closes [#206](206)) + +#### Bug Fixes + +* record timestamps for updates last (#289) ([703f1aa4](703f1aa4), closes [#266](266)) +* use monotonic `Instant`s for all timestamps (#288) ([abc08300](abc08300), closes [#286](286)) +* bail rather than panic when encountering clock skew (#287) ([24db8c60](24db8c60), closes [#286](286)) +* fix compilation on targets without 64-bit atomics (#282) ([5590fdbc](5590fdbc), closes [#279](279)) + + ## 0.1.2 (2022-01-18) diff --git a/console-subscriber/Cargo.toml b/console-subscriber/Cargo.toml index a84c20363..f7dc5e8b0 100644 --- a/console-subscriber/Cargo.toml +++ b/console-subscriber/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "console-subscriber" -version = "0.1.2" +version = "0.1.3" license = "MIT" edition = "2021" rust-version = "1.56.0"