From 57a956a647e31b8335c65507e326323647abd19a Mon Sep 17 00:00:00 2001 From: Tomasz Pietrek Date: Mon, 2 Oct 2023 09:13:38 +0200 Subject: [PATCH] Add 0.32.1 changelog and bump version Signed-off-by: Tomasz Pietrek --- async-nats/CHANGELOG.md | 10 ++++++++++ async-nats/Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/async-nats/CHANGELOG.md b/async-nats/CHANGELOG.md index 526edb93a..4649ed16d 100644 --- a/async-nats/CHANGELOG.md +++ b/async-nats/CHANGELOG.md @@ -1,3 +1,13 @@ +# 0.32.1 +## Overview +This is a patch release for the new 0.32 muxer, as it could subscribe to more messages than necessary, properly dispatching +them but potentially increasing traffic. + +## Fixed +* Fix muxer prefix by @Jarema in https://github.com/nats-io/nats.rs/pull/1124 + +**Full Changelog**: https://github.com/nats-io/nats.rs/compare/async-nats/v0.32.0...async-nats/v0.32.1 + # 0.32.0 ## Overview diff --git a/async-nats/Cargo.toml b/async-nats/Cargo.toml index 86e203955..7cd93cc08 100644 --- a/async-nats/Cargo.toml +++ b/async-nats/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "async-nats" authors = ["Tomasz Pietrek ", "Casper Beyer "] -version = "0.32.0" +version = "0.32.1" edition = "2021" rust = "1.67.0" description = "A async Rust NATS client"