Skip to content

Commit 27b9e8a

Browse files
authored
Merge pull request #272 from nervosnetwork/bump-to-0.3.2
chore: bump to 0.3.2
2 parents 5021edc + ec1055e commit 27b9e8a

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## 0.3.2
2+
3+
### Features
4+
- Change channel api to immutable(#265)
5+
- Enable reuse port, use to NAT penetration(#266)
6+
- Make yamux independent of the specific runtime(#267,#268)
7+
- Make tentacle run on async std(#269)
8+
- Add fuzz test(#211)
9+
110
## 0.3.1
211

312
### Features

tentacle/Cargo.toml

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

1818
[dependencies]
19-
yamux = { path = "../yamux", version = "0.2.6", default-features = false, package = "tokio-yamux"}
19+
yamux = { path = "../yamux", version = "0.2.7", default-features = false, package = "tokio-yamux"}
2020
secio = { path = "../secio", version = "0.4.1", package = "tentacle-secio" }
2121

2222
futures = { version = "0.3.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.6"
3+
version = "0.2.7"
44
license = "MIT"
55
repository = "https://github.com/nervosnetwork/tentacle"
66
description = "Rust implementation of Yamux"

0 commit comments

Comments
 (0)