Skip to content

Commit

Permalink
Merge pull request #310 from nervosnetwork/bump-to-0.3.8
Browse files Browse the repository at this point in the history
chore: bump to 0.3.8
  • Loading branch information
driftluo authored Feb 23, 2021
2 parents 9dec36b + df071fa commit abecd4f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions tentacle/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>", "Nervos Core Dev <[email protected]>"]
Expand All @@ -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" }
Expand Down
2 changes: 1 addition & 1 deletion yamux/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit abecd4f

Please sign in to comment.