From 4d1f6e034034639e09404cc54450b5b2bf153eac Mon Sep 17 00:00:00 2001 From: Lars Baumgaertner <1264131+gh0st42@users.noreply.github.com> Date: Wed, 27 Mar 2024 07:56:01 +0000 Subject: [PATCH] chore(release): prepare for v0.21.0 --- CHANGELOG.md | 6 ++++++ Cargo.lock | 2 +- core/dtn7/Cargo.toml | 2 +- examples/Cargo.toml | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 914d21b3..5dc28cb5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Changelog All notable changes to this project will be documented in this file. +## [0.21.0] - 2024-03-27 + +### Features + +- Minimal implementation of UDP CL without any of the extensions (#64) + ## [0.20.2] - 2024-03-14 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 1342c858..270eebcc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -567,7 +567,7 @@ checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0" [[package]] name = "dtn7" -version = "0.20.2" +version = "0.21.0" dependencies = [ "anyhow", "async-trait", diff --git a/core/dtn7/Cargo.toml b/core/dtn7/Cargo.toml index a8cc8ce3..b61dd829 100644 --- a/core/dtn7/Cargo.toml +++ b/core/dtn7/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dtn7" -version = "0.20.2" # managed by release.sh +version = "0.21.0" # managed by release.sh authors = ["Lars Baumgaertner "] description = "Rust delay-tolerant-networking daemon and CLI tools implementing Bundle Protocol Version 7 (RFC9171)" edition = "2021" diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 2568ab6d..2fc4d441 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -16,7 +16,7 @@ anyhow = "1.0.57" serde_cbor = "0.11" humantime = "2.1.0" rand = "0.8.5" -dtn7 = { path = "../core/dtn7", default-features = false, version = "0.20.2"} # managed by release.sh +dtn7 = { path = "../core/dtn7", default-features = false, version = "0.21.0"} # managed by release.sh tokio = { version = "1.36.0", features = [ "net", "rt-multi-thread",