From de926a05f4df2f3a06bb8f928c2619a585d0156e Mon Sep 17 00:00:00 2001 From: Sebastian Urban Date: Mon, 6 Feb 2023 16:15:09 +0100 Subject: [PATCH] Version 0.4.0 --- aggligator-util/CHANGELOG.md | 7 +++++++ aggligator-util/Cargo.toml | 4 ++-- aggligator/CHANGELOG.md | 8 ++++++++ aggligator/Cargo.toml | 2 +- 4 files changed, 18 insertions(+), 3 deletions(-) diff --git a/aggligator-util/CHANGELOG.md b/aggligator-util/CHANGELOG.md index 26bda5d..9ff5f9b 100644 --- a/aggligator-util/CHANGELOG.md +++ b/aggligator-util/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to aggligator utilities will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.4.0 - 2023-02-06 +### Added +- link monitor: display link unconfirmed reason +- link monitor: display link connected time +### Changed +- use Aggligator 0.4.0 + ## 0.3.3 - 2023-02-05 ### Added - command line option `--individual-interfaces` for servers to listen on each diff --git a/aggligator-util/Cargo.toml b/aggligator-util/Cargo.toml index c230b9b..a6ffe5d 100644 --- a/aggligator-util/Cargo.toml +++ b/aggligator-util/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aggligator-util" -version = "0.3.3" +version = "0.4.0" edition = "2021" rust-version = "1.65" authors = ["Sebastian Urban "] @@ -38,7 +38,7 @@ monitor = ["crossterm"] dump = ["aggligator/dump"] [dependencies] -aggligator = { version = "0.3.3", path = "../aggligator" } +aggligator = { version = "0.4.0", path = "../aggligator" } futures = "0.3" tokio = { version = "1.21", features = ["rt", "rt-multi-thread"] } diff --git a/aggligator/CHANGELOG.md b/aggligator/CHANGELOG.md index d685653..874be0f 100644 --- a/aggligator/CHANGELOG.md +++ b/aggligator/CHANGELOG.md @@ -5,6 +5,14 @@ All notable changes to Aggligator will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.4.0 - 2023-02-06 +### Added +- data integrity checking for IO-based links +- publish reason why a link is currently not working +### Changed +- protocol version 3 +- optimize resend queue handling + ## 0.3.3 - 2023-02-05 ### Added - statistics for number of link hangs diff --git a/aggligator/Cargo.toml b/aggligator/Cargo.toml index b39c2ee..3b963f6 100644 --- a/aggligator/Cargo.toml +++ b/aggligator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aggligator" -version = "0.3.3" +version = "0.4.0" edition = "2021" rust-version = "1.65" authors = ["Sebastian Urban "]