Skip to content

Commit 497499c

Browse files
authored
Merge pull request #408 from nervosnetwork/bump-to-0.7.0
chore: bump to 0.7.0
2 parents 4b1ecf5 + 629eb0c commit 497499c

File tree

5 files changed

+15
-7
lines changed

5 files changed

+15
-7
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## tentacle 0.7.0 yamux 0.3.14 secio 0.6.6
2+
3+
### Features
4+
- Upgrade to Rust 2024 edition(#402)
5+
- Drop async-runtime,async-timer features(#406)
6+
- Support session init from user(#405)
7+
- Support proxy and onion(#392)
8+
19
## yamux 0.3.13
210

311
### Features

multiaddr/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-multiaddr"
3-
version = "0.3.5"
3+
version = "0.3.6"
44
authors = ["driftluo <driftluo@foxmail.com>"]
55
edition = "2024"
66
rust-version = "1.85.0"

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.6.5"
3+
version = "0.6.6"
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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tentacle"
3-
version = "0.6.7"
3+
version = "0.7.0"
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>"]
@@ -18,8 +18,8 @@ no-default-features = true
1818
rustc-args = ["--cfg", "docsrs"]
1919

2020
[dependencies]
21-
yamux = { path = "../yamux", version = "0.3.0", default-features = false, package = "tokio-yamux" }
22-
secio = { path = "../secio", version = "0.6.2", package = "tentacle-secio" }
21+
yamux = { path = "../yamux", version = "0.3.14", default-features = false, package = "tokio-yamux" }
22+
secio = { path = "../secio", version = "0.6.6", package = "tentacle-secio" }
2323

2424
futures = { version = "0.3.0" }
2525
tokio = { version = "1.0.0", features = ["macros"] }
@@ -35,7 +35,7 @@ tokio-tungstenite = { version = "0.26", optional = true }
3535
httparse = { version = "1.9", optional = true }
3636
futures-timer = { version = "3.0.2", optional = true }
3737

38-
multiaddr = { path = "../multiaddr", package = "tentacle-multiaddr", version = "0.3.4" }
38+
multiaddr = { path = "../multiaddr", package = "tentacle-multiaddr", version = "0.3.6" }
3939
url = "2.5.4"
4040
molecule = "0.8.0"
4141

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

0 commit comments

Comments
 (0)