From 79f42560b6d7372040c3ddc3453b60ce100b6364 Mon Sep 17 00:00:00 2001 From: Sebastian Urban Date: Tue, 26 Mar 2024 10:59:29 +0100 Subject: [PATCH] aggligator-util version 0.14.0 --- aggligator-util/CHANGELOG.md | 7 +++++++ aggligator-util/Cargo.toml | 6 +++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/aggligator-util/CHANGELOG.md b/aggligator-util/CHANGELOG.md index 51b9f2d..c9f35a2 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.14.0 - 2024-03-26 +### Added +- FreeBSD support +- agg-speed: warning for debug builds +### Changed +- update rustls to 0.23 + ## 0.13.2 - 2024-03-14 ### Fixed - documentation diff --git a/aggligator-util/Cargo.toml b/aggligator-util/Cargo.toml index 2ef5d9c..5188d58 100644 --- a/aggligator-util/Cargo.toml +++ b/aggligator-util/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aggligator-util" -version = "0.13.2" +version = "0.14.0" edition = "2021" rust-version = "1.70" authors = ["Sebastian Urban "] @@ -57,9 +57,9 @@ async-trait = "0.1" bytes = "1" bluer = { version = "0.17", default-features = false, optional = true } -rustls = { version = "0.22", optional = true } +rustls = { version = "0.23", optional = true } rustls-pemfile = { version = "2.0", optional = true } -tokio-rustls = { version = "0.25", optional = true } +tokio-rustls = { version = "0.26", optional = true } rand = { version = "0.8", optional = true } rand_xoshiro = { version = "0.6", optional = true } clap = { version = "4", features = ["derive"], optional = true }