commit 441775eedc9687c7b038fc3bcf548093eb0a7dee from: murilo ijanc date: Thu Mar 26 01:28:58 2026 UTC Bump version to 0.1.1, update tesseras-dht to 0.1.2 commit - 4214189961d59b9de15e221a9c4b229c0d646e78 commit + 441775eedc9687c7b038fc3bcf548093eb0a7dee blob - c6b681151fe601aa8008cd2d23a22324470cc8d1 blob + c9b5122adbf9ff5ae56f918e07d7e5097d8a946f --- CHANGELOG.md +++ CHANGELOG.md @@ -5,6 +5,16 @@ All notable changes to this project will be documented 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 blob - 1ae78958d077ca52bd2acba7c02055671153ed2c blob + 688f5bb4afd2a55e1d79458886cc2113dcf9d7a3 --- Cargo.lock +++ 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", blob - 73338d862f43932d47d75861355e447e8a06683c blob + 03bc0acd66f69bb0e0362c339f7585bf461cc8f2 --- Cargo.toml +++ 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"