-
Notifications
You must be signed in to change notification settings - Fork 169
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release async-nats/v0.12.0 nats/0.19.1
- Loading branch information
Showing
4 changed files
with
22 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,19 @@ | ||
# 0.12.0 | ||
## Added | ||
* Add more examples and docs by @Jarema in https://github.com/nats-io/nats.rs/pull/372 | ||
* Add unsubscribe by @Jarema in https://github.com/nats-io/nats.rs/pull/363 | ||
* Add unsubscribe_after by @Jarema in https://github.com/nats-io/nats.rs/pull/385 | ||
* Add queue subscriber and unit test by @stevelr in https://github.com/nats-io/nats.rs/pull/388 | ||
* Implement reconnect by @caspervonb in https://github.com/nats-io/nats.rs/pull/382 | ||
|
||
## Other | ||
* Fix test linter warnings by @caspervonb in https://github.com/nats-io/nats.rs/pull/379 | ||
* Fix tests failing with nats-server 2.8.0 by @Jarema in https://github.com/nats-io/nats.rs/pull/380 | ||
* Use local server for documentation tests by @caspervonb in https://github.com/nats-io/nats.rs/pull/377 | ||
* Improve workflow caching by @caspervonb in https://github.com/nats-io/nats.rs/pull/381 | ||
* Fix typo in README.md by @mgrachev in https://github.com/nats-io/nats.rs/pull/384 | ||
* Internal Architecture overhaul by @caspervonb and @Jarema | ||
|
||
# 0.11.0 | ||
Initial release of async NATS client rewrite. | ||
The versioning starts from v0.11.0, as the Crate was used a long time ago by NATS.io org for some former work around async client. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "nats" | ||
version = "0.19.0" | ||
version = "0.19.1" | ||
description = "A Rust NATS client" | ||
authors = ["Derek Collison <[email protected]>", "Tyler Neely <[email protected]>", "Stjepan Glavina <[email protected]>"] | ||
edition = "2018" | ||
|