Skip to content

Commit 5cf596f

Browse files
authored
Merge pull request #304 from nervosnetwork/bump-to-0.3.6
chore: bump to 0.3.6
2 parents bcef2fa + a0d453c commit 5cf596f

File tree

5 files changed

+17
-6
lines changed

5 files changed

+17
-6
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 0.3.6
2+
3+
### Bug Fix
4+
- Fix random open stream fail(#298)
5+
- yamux session flush must once a loop(#296)
6+
- Fix config doesnt use(#300 #302)
7+
8+
### Features
9+
- Perf yamux and secio(#295)
10+
- Avoiding double loops(#294)
11+
112
## 0.3.5
213

314
### Bug Fix

secio/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tentacle-secio"
3-
version = "0.4.4"
3+
version = "0.4.5"
44
license = "MIT"
55
description = "Secio encryption protocol for p2p"
66
authors = ["piaoliu <driftluo@foxmail.com>", "Nervos Core Dev <dev@nervos.org>"]

tentacle/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tentacle"
3-
version = "0.3.5"
3+
version = "0.3.6"
44
license = "MIT"
55
description = "Minimal implementation for a multiplexed p2p network framework."
66
authors = ["piaoliu <driftluo@foxmail.com>", "Nervos Core Dev <dev@nervos.org>"]
@@ -16,8 +16,8 @@ all-features = false
1616
no-default-features = true
1717

1818
[dependencies]
19-
yamux = { path = "../yamux", version = "0.2.10", default-features = false, package = "tokio-yamux"}
20-
secio = { path = "../secio", version = "0.4.4", package = "tentacle-secio" }
19+
yamux = { path = "../yamux", version = "0.2.11", default-features = false, package = "tokio-yamux"}
20+
secio = { path = "../secio", version = "0.4.5", package = "tentacle-secio" }
2121

2222
futures = { version = "0.3.0" }
2323
tokio = { version = "0.2.0" }

yamux/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tokio-yamux"
3-
version = "0.2.10"
3+
version = "0.2.11"
44
license = "MIT"
55
repository = "https://github.com/nervosnetwork/tentacle"
66
description = "Rust implementation of Yamux"

yamux/src/stream.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ impl AsyncRead for StreamHandle {
354354

355355
let n = ::std::cmp::min(buf.len(), self.read_buf.len());
356356
trace!(
357-
"stream-hanlde({}) poll_read self.read_buf.len={}, buf.len={}, n={}",
357+
"stream-handle({}) poll_read self.read_buf.len={}, buf.len={}, n={}",
358358
self.id,
359359
self.read_buf.len(),
360360
buf.len(),

0 commit comments

Comments
 (0)