Release v0.10.0
Changelog
The master
branch was renamed to main
. If you have a fork/clone of the repo, you may have to run this:
git branch -m master main
git fetch origin
git branch -u origin/main main
git remote set-head origin -a
Deprecated
- The
NatsConn()
option is deprecated, the new optionNatsOptions()
should be used instead. Thanks to @Russiancold for the suggestion (#355)
Added
NatsOptions()
option to configure the underlying NATS connection used by the Streaming connection. Thanks to @Russiancold for the suggestion (#355)