Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions secio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "tentacle-secio"
version = "0.6.6"
version = "0.6.7"
license = "MIT"
description = "Secio encryption protocol for p2p"
authors = ["piaoliu <driftluo@foxmail.com>", "Nervos Core Dev <dev@nervos.org>"]
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]
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.7.3"
version = "0.7.4"
license = "MIT"
description = "Minimal implementation for a multiplexed p2p network framework."
authors = ["piaoliu <driftluo@foxmail.com>", "Nervos Core Dev <dev@nervos.org>"]
Expand All @@ -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"]
Expand Down