From a3d64cdf6c535f3b46aff93bcf14375b206fc1e5 Mon Sep 17 00:00:00 2001 From: Tyler Neely Date: Mon, 12 Apr 2021 14:40:50 +0200 Subject: [PATCH] Cut 0.9.10 --- CHANGELOG.md | 9 +++++++++ Cargo.toml | 2 +- async-nats/Cargo.toml | 4 ++-- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b723e13a0..c20c23163 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# 0.9.10 + +## Improvements + +- #162 `Subscription::receiver` has been added to + provide access to a `Subscription`'s underlying + `crossbeam_challel::Receiver` for use in `select!` + blocks etc... + # 0.9.9 ## Bug Fixes diff --git a/Cargo.toml b/Cargo.toml index c9b11ccdd..34e411799 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nats" -version = "0.9.9" +version = "0.9.10" description = "A Rust NATS client" authors = ["Derek Collison ", "Tyler Neely ", "Stjepan Glavina "] edition = "2018" diff --git a/async-nats/Cargo.toml b/async-nats/Cargo.toml index 348138f20..e5bd7671d 100644 --- a/async-nats/Cargo.toml +++ b/async-nats/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "async-nats" -version = "0.9.9" +version = "0.9.10" description = "An async Rust NATS client" authors = ["Derek Collison ", "Tyler Neely ", "Stjepan Glavina "] edition = "2018" @@ -17,7 +17,7 @@ maintenance = { status = "actively-developed" } [dependencies] blocking = "1.0.2" -nats = { path = "..", version = "0.9.9" } +nats = { path = "..", version = "0.9.10" } [dev-dependencies] smol = "1.2.5"