From 6588a91a3341dd5c46811d18663eb411db076159 Mon Sep 17 00:00:00 2001 From: gh0st <1264131+gh0st42@users.noreply.github.com> Date: Sun, 9 Oct 2022 21:41:42 +0200 Subject: [PATCH] chore(release): prepare for 0.18.1 --- CHANGELOG.md | 35 +++++++++++++++++++++++++++++++++++ Cargo.lock | 2 +- core/dtn7/Cargo.toml | 2 +- 3 files changed, 37 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b3a7661..fc51aefe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,41 @@ # Changelog All notable changes to this project will be documented in this file. +## [0.18.1] - 2022-10-09 + +### Bug Fixes + +- Fixed minor shell scripting bugs in test scripts +- Removed debug symbols from release profile and enabled stripping binaries +- Filtering bundles from store by address no longer returns deleted BIDs (#40) +- Ignore beacons from self for broadcast IPND packets + +### Documentation + +- Updated README, removed tool help output and described recent feature additions. +- Added badge with link to dtn7 matrix space to README +- Changed help output regarding local endpoints in dtnrecv and dtntrigger tools + +### Features + +- CLAs can now indicate if the are accepting new bundles, e.g., useful for discovery only CLAs +- Support for sprayandwait routing strategy (#29) +- Added support for broadcast sockets +- Added warning if no CLA is configured + +### Miscellaneous Tasks + +- Bumped minimum ubuntu version in cd.yml to 20.04 +- Pleased clippy of rust 1.64 + +### Refactor + +- Reexport all external client relevant pieces of code to dtn7::client + +### Testing + +- Added clab scenario with two subnets + ## [0.18.0] - 2022-07-21 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 704a45ae..4d98c1ae 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -485,7 +485,7 @@ checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0" [[package]] name = "dtn7" -version = "0.18.0" +version = "0.18.1" dependencies = [ "anyhow", "async-trait", diff --git a/core/dtn7/Cargo.toml b/core/dtn7/Cargo.toml index 91506f8b..5cf8509b 100644 --- a/core/dtn7/Cargo.toml +++ b/core/dtn7/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dtn7" -version = "0.18.0" # managed by release.sh +version = "0.18.1" # managed by release.sh authors = ["Lars Baumgaertner "] description = "Rust delay-tolerant-networking daemon and CLI tools implementing Bundle Protocol Version 7 (RFC9171)" edition = "2018"