Skip to content

Commit 2a7e6fd

Browse files
committed
Aggligator version 0.9.7
1 parent 8750362 commit 2a7e6fd

File tree

9 files changed

+31
-22
lines changed

9 files changed

+31
-22
lines changed

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aggligator-monitor/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aggligator-monitor"
3-
version = "0.9.5"
3+
version = "0.9.7"
44
description = "Aggligator link monitor and speed test"
55
categories = ["asynchronous", "network-programming"]
66
keywords = ["aggligator"]
@@ -12,7 +12,7 @@ license.workspace = true
1212
repository.workspace = true
1313

1414
[dependencies]
15-
aggligator = { version = "0.9.5", path = "../aggligator" }
15+
aggligator = { version = "0.9.7", path = "../aggligator" }
1616

1717
crossterm = { workspace = true }
1818
futures = { workspace = true }

aggligator-transport-tcp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aggligator-transport-tcp"
3-
version = "0.2.3"
3+
version = "0.2.4"
44
description = "Aggligator transport: TCP"
55
categories = ["asynchronous", "network-programming"]
66
keywords = ["aggligator", "aggligator-transport"]
@@ -16,7 +16,7 @@ default = ["tls"]
1616
tls = ["dep:aggligator-wrapper-tls"]
1717

1818
[dependencies]
19-
aggligator = { version = "0.9.6", path = "../aggligator" }
19+
aggligator = { version = "0.9.7", path = "../aggligator" }
2020
aggligator-wrapper-tls = { version = "0.2.0", path = "../aggligator-wrapper-tls", optional = true }
2121

2222
async-trait = { workspace = true }

aggligator-transport-usb/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aggligator-transport-usb"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
description = "Aggligator transport: USB"
55
categories = ["asynchronous", "network-programming"]
66
keywords = ["aggligator", "aggligator-transport"]
@@ -17,7 +17,7 @@ host = ["upc/host", "dep:nusb"]
1717
device = ["upc/device", "usb-gadget"]
1818

1919
[dependencies]
20-
aggligator = { version = "0.9.6", path = "../aggligator" }
20+
aggligator = { version = "0.9.7", path = "../aggligator" }
2121

2222
async-trait = { workspace = true }
2323
futures = { workspace = true }

aggligator-transport-websocket/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aggligator-transport-websocket"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
description = "Aggligator transport: WebSocket"
55
categories = ["asynchronous", "network-programming"]
66
keywords = ["aggligator", "aggligator-transport"]
@@ -12,8 +12,8 @@ license.workspace = true
1212
repository.workspace = true
1313

1414
[dependencies]
15-
aggligator = { version = "0.9.6", path = "../aggligator" }
16-
aggligator-transport-tcp = { version = "0.2.2", path = "../aggligator-transport-tcp", default-features = false }
15+
aggligator = { version = "0.9.7", path = "../aggligator" }
16+
aggligator-transport-tcp = { version = "0.2.4", path = "../aggligator-transport-tcp", default-features = false }
1717

1818
async-trait = { workspace = true }
1919
futures = { workspace = true }

aggligator-util/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to aggligator utilities will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.18.7 - 2025-08-19
9+
### Changed
10+
- better logging
11+
812
## 0.18.6 - 2025-07-28
913
### Changed
1014
- update dependencies

aggligator-util/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aggligator-util"
3-
version = "0.18.6"
3+
version = "0.18.7"
44
description = "Aggligator command line utilities"
55
categories = ["network-programming", "command-line-utilities"]
66
keywords = ["aggligator", "multipath", "multiplex", "tcp", "mptcp"]
@@ -19,12 +19,12 @@ usb-host = ["aggligator-transport-usb/host"]
1919
raw-speed-cli = []
2020

2121
[dependencies]
22-
aggligator = { version = "0.9.5", path = "../aggligator", features = ["dump"] }
23-
aggligator-monitor = { version = "0.9.5", path = "../aggligator-monitor" }
22+
aggligator = { version = "0.9.7", path = "../aggligator", features = ["dump"] }
23+
aggligator-monitor = { version = "0.9.7", path = "../aggligator-monitor" }
2424
aggligator-transport-bluer = { version = "0.1.1", path = "../aggligator-transport-bluer", optional = true }
25-
aggligator-transport-tcp = { version = "0.2.3", path = "../aggligator-transport-tcp" }
26-
aggligator-transport-usb = { version = "0.5.0", path = "../aggligator-transport-usb", optional = true }
27-
aggligator-transport-websocket = { version = "0.5.0", path = "../aggligator-transport-websocket" }
25+
aggligator-transport-tcp = { version = "0.2.4", path = "../aggligator-transport-tcp" }
26+
aggligator-transport-usb = { version = "0.5.1", path = "../aggligator-transport-usb", optional = true }
27+
aggligator-transport-websocket = { version = "0.5.1", path = "../aggligator-transport-websocket" }
2828
aggligator-wrapper-tls = { version = "0.2.0", path = "../aggligator-wrapper-tls" }
2929

3030
async-trait = { workspace = true }

aggligator/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to Aggligator will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.9.7 - 2025-08-19
9+
### Added
10+
- better integration with tracing crate:
11+
aggligator now uses spans for connections and transport tasks
12+
813
## 0.9.6 - 2025-06-22
914
### Added
1015
- transport: public type aliases for boxed types

aggligator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aggligator"
3-
version = "0.9.6"
3+
version = "0.9.7"
44
description = "Aggregates multiple links (TCP or similar) into one connection having their combined bandwidth and provides resiliency against failure of individual links."
55
categories = ["asynchronous", "network-programming"]
66
keywords = ["aggligator", "multi-link", "multipath", "connection", "resilient"]

0 commit comments

Comments
 (0)