Skip to content

Commit

Permalink
chore(release): prepare for v0.20.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gh0st42 committed Mar 14, 2024
1 parent e7f7fb6 commit 3ce594d
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 4 deletions.
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,23 @@
# Changelog
All notable changes to this project will be documented in this file.

## [0.20.1] - 2024-02-28
## [0.20.2] - 2024-03-14

### Bug Fixes

- Added grep to alpine docker image for determining broadcast addresses in start_dtnd
- Fixed httppull test with correct scheme for static node entries
- Fixed issues in dtnecho.py example when running with ipn naming scheme
- Fixed statistics counters to properly record incoming/outgoing/failed/broken bundles

### Documentation

- Updated getting started guide to use dtn7-showroom.

### Features

- Added cors header to allow access from anywhere (#61)
- Support work over proxy HTTP/HTTPS/SOCKS with DNS name instead of IP address (https://github.com/dtn7/dtn7-rs/issues/52) (#63)

### Miscellaneous Tasks

Expand All @@ -15,6 +27,11 @@ All notable changes to this project will be documented in this file.

- Removed reqwest dependecy, httppullcl is now using attohttpc

### Testing

- Added script to fluctuate connectivity in line-3n docker compose scenario
- Made line-3n-loss.sh for docker compose scenario compatible with docker and podman

### Build

- Sled and d7sneakers are now optional features for dtn7
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion core/dtn7/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dtn7"
version = "0.20.1" # managed by release.sh
version = "0.20.2" # managed by release.sh
authors = ["Lars Baumgaertner <baumgaertner@cs.tu-darmstadt.de>"]
description = "Rust delay-tolerant-networking daemon and CLI tools implementing Bundle Protocol Version 7 (RFC9171)"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.1"} # managed by release.sh
dtn7 = { path = "../core/dtn7", default-features = false, version = "0.20.2"} # managed by release.sh
tokio = { version = "1.36.0", features = [
"net",
"rt-multi-thread",
Expand Down

0 comments on commit 3ce594d

Please sign in to comment.