aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md10
-rw-r--r--Cargo.lock6
-rw-r--r--Cargo.toml4
3 files changed, 15 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c6b6811..c9b5122 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+## [0.1.1] - 2026-03-25
+
+### Added
+
+- Automatic re-join of bootstrap nodes when the routing table is empty.
+ The daemon checks every 60 seconds and unbans bootstrap addresses
+ before reconnecting, so replies are not silently discarded.
+- `-v` flag for both `tpd` and `tp` to enable verbose/debug output
+ without relying on `RUST_LOG` environment variable.
+
## [0.1.0] - 2026-03-25
### Added
diff --git a/Cargo.lock b/Cargo.lock
index 1ae7895..688f5bb 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -546,9 +546,9 @@ dependencies = [
[[package]]
name = "tesseras-dht"
-version = "0.1.1"
+version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "be972dbc85e9a63018117cb3b71cc9d9c094cde5222771c8d3ec8e36e506714c"
+checksum = "9d3fe1b55bc14e2a7651441c82c3bbf1962acd9add00edf7a19f73adabfbdefe"
dependencies = [
"ed25519-dalek",
"log",
@@ -558,7 +558,7 @@ dependencies = [
[[package]]
name = "tesseras-paste"
-version = "0.1.0"
+version = "0.1.1"
dependencies = [
"chacha20poly1305",
"env_logger",
diff --git a/Cargo.toml b/Cargo.toml
index 73338d8..03bc0ac 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tesseras-paste"
-version = "0.1.0"
+version = "0.1.1"
edition = "2024"
license = "ISC"
readme = "README.md"
@@ -24,4 +24,4 @@ env_logger = "=0.11.10"
log = "=0.4.29"
# tesseras
-tesseras-dht = "=0.1.1"
+tesseras-dht = "=0.1.2"