From 0d9f0bda641ccbf286bd3abdee8d968c25446d63 Mon Sep 17 00:00:00 2001 From: Jarema Date: Wed, 4 May 2022 21:39:12 +0200 Subject: [PATCH] Release async-nats/v0.13.0 --- async-nats/CHANGELOG.md | 16 ++++++++++++++++ async-nats/Cargo.toml | 2 +- async-nats/tests/configs/single-port.conf | 1 + 3 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 async-nats/tests/configs/single-port.conf diff --git a/async-nats/CHANGELOG.md b/async-nats/CHANGELOG.md index 09b7e13ea..13100c7dd 100644 --- a/async-nats/CHANGELOG.md +++ b/async-nats/CHANGELOG.md @@ -1,3 +1,19 @@ +# 0.13.0 +## Added +* Add Auth - username/password & token by @Jarema in https://github.com/nats-io/nats.rs/pull/408 +* Support sending and receiving messages with headers by @caspervonb in https://github.com/nats-io/nats.rs/pull/402 +* Add async server errors callbacks by @Jarema in https://github.com/nats-io/nats.rs/pull/397 +* Discover additional servers via INFO by @caspervonb in https://github.com/nats-io/nats.rs/pull/403 +* Resolve socket addresses during connect by @caspervonb in https://github.com/nats-io/nats.rs/pull/403 + +## Changed +* Wait between reconnection attempts by @caspervonb in https://github.com/nats-io/nats.rs/pull/407 +* Limit connection attempts by @caspervonb in https://github.com/nats-io/nats.rs/pull/400 + +## Other +* Remove redundant doctests by @Jarema in https://github.com/nats-io/nats.rs/pull/412 +* Fix connection callback tests by @Jarema in https://github.com/nats-io/nats.rs/pull/420 + # 0.12.0 ## Added * Add more examples and docs by @Jarema in https://github.com/nats-io/nats.rs/pull/372 diff --git a/async-nats/Cargo.toml b/async-nats/Cargo.toml index cf335d8f8..3fc63696f 100644 --- a/async-nats/Cargo.toml +++ b/async-nats/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "async-nats" -version = "0.12.0" +version = "0.13.0" edition = "2021" description = "A async Rust NATS client" license = "Apache-2.0" diff --git a/async-nats/tests/configs/single-port.conf b/async-nats/tests/configs/single-port.conf new file mode 100644 index 000000000..177c27046 --- /dev/null +++ b/async-nats/tests/configs/single-port.conf @@ -0,0 +1 @@ +listen: localhost:8888