diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f4ed9d02..a24f35c54 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.9.1 + +## Bug Fixes + +- #136 Workaround: skip native certificates that can't be loaded. + # 0.9.0 ## Breaking Changes diff --git a/Cargo.toml b/Cargo.toml index 2f1aa6f71..dca16a3bf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nats" -version = "0.9.0" +version = "0.9.1" 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 7a3c6d38b..4021c6bdb 100644 --- a/async-nats/Cargo.toml +++ b/async-nats/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "async-nats" -version = "0.9.0" +version = "0.9.1" 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" } +nats = { path = "..", version = "0.9.1" } [dev-dependencies] smol = "1.2.5"