From 60b8b5332425eb976d941f16a664fc6c46ebe0b5 Mon Sep 17 00:00:00 2001 From: driftluo Date: Sat, 7 Feb 2026 11:30:39 +0800 Subject: [PATCH] chore: bump to 0.7.4 --- CHANGELOG.md | 11 +++++++++++ secio/Cargo.toml | 4 ++-- tentacle/Cargo.toml | 4 ++-- 3 files changed, 15 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1cf9615b..1da45058 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## tentacle 0.7.4 secio 0.6.7 + +### Features +- Support parsing haproxy protocol on TCP(#422) +- Support parsing X-Forwarded-For/X-Forwarded-Port on WebSocket(#422) + +## tentacle 0.7.3 + +### Features +- Add metrics of yamux ping timeout and latency by @jjyr in(#419) + ## tentacle 0.7.2 yamux 0.3.17 ### Features diff --git a/secio/Cargo.toml b/secio/Cargo.toml index 0b8a1be0..196b253d 100644 --- a/secio/Cargo.toml +++ b/secio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tentacle-secio" -version = "0.6.6" +version = "0.6.7" license = "MIT" description = "Secio encryption protocol for p2p" authors = ["piaoliu ", "Nervos Core Dev "] @@ -8,7 +8,7 @@ repository = "https://github.com/nervosnetwork/tentacle" keywords = ["network", "peer-to-peer"] categories = ["network-programming", "asynchronous"] edition = "2024" -rust-version = "1.85.0" +rust-version = "1.88.0" build = "build.rs" [package.metadata.docs.rs] diff --git a/tentacle/Cargo.toml b/tentacle/Cargo.toml index 5f893a11..af1c4230 100644 --- a/tentacle/Cargo.toml +++ b/tentacle/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tentacle" -version = "0.7.3" +version = "0.7.4" license = "MIT" description = "Minimal implementation for a multiplexed p2p network framework." authors = ["piaoliu ", "Nervos Core Dev "] @@ -9,7 +9,7 @@ readme = "README.md" keywords = ["network", "peer-to-peer"] categories = ["network-programming", "asynchronous"] edition = "2024" -rust-version = "1.85.0" +rust-version = "1.88.0" [package.metadata.docs.rs] features = ["tokio-runtime", "tokio-timer", "upnp", "ws", "unstable", "tls"]