diff --git a/CHANGELOG.md b/CHANGELOG.md index 9fd3441d..896268a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 0.3.8 + +### Bug Fix +- Port futures-rs fix on channel(#308) +- Don't use loop on yamux(#307) +- Fix yamux close(#309) + ## 0.3.7 ### Bug Fix diff --git a/tentacle/Cargo.toml b/tentacle/Cargo.toml index 156ceb0a..64fdb848 100644 --- a/tentacle/Cargo.toml +++ b/tentacle/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tentacle" -version = "0.3.7" +version = "0.3.8" license = "MIT" description = "Minimal implementation for a multiplexed p2p network framework." authors = ["piaoliu ", "Nervos Core Dev "] @@ -16,7 +16,7 @@ all-features = false no-default-features = true [dependencies] -yamux = { path = "../yamux", version = "0.2.11", default-features = false, package = "tokio-yamux"} +yamux = { path = "../yamux", version = "0.2.12", default-features = false, package = "tokio-yamux"} secio = { path = "../secio", version = "0.4.5", package = "tentacle-secio" } futures = { version = "0.3.0" } diff --git a/yamux/Cargo.toml b/yamux/Cargo.toml index 1f875044..c83de610 100644 --- a/yamux/Cargo.toml +++ b/yamux/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tokio-yamux" -version = "0.2.11" +version = "0.2.12" license = "MIT" repository = "https://github.com/nervosnetwork/tentacle" description = "Rust implementation of Yamux"