Commit Diff


commit - 1cc0f3b34c7ff29675d5130a1c17fe5ab7f16ac6
commit + 557852ef3b2a4388f135fa0182adf7b84fc320b5
blob - 81b5537b8edfa654fa5b6db47c1a94f6452a4f9d
blob + 4d0caf0b8bdb1a3d20697232e100da7d1280dbed
--- CHANGELOG.md
+++ CHANGELOG.md
@@ -5,6 +5,14 @@ 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.2] - 2026-03-25
+
+### Added
+
+- `BanList::unban()` to remove a specific ban and its failure history.
+- `Node::unban()` public API to allow callers to clear bans for specific
+  addresses (needed for re-join after transient failures).
+
 ## [0.1.1] - 2026-03-25
 
 ### Fixed
blob - f0841f7edad5a64ed30c8954289a2bec99799ccf
blob + f8738083053c547f2d3aaa4146710396ab42fac3
--- Cargo.lock
+++ Cargo.lock
@@ -474,7 +474,7 @@ dependencies = [
 
 [[package]]
 name = "tesseras-dht"
-version = "0.1.1"
+version = "0.1.2"
 dependencies = [
  "ed25519-dalek",
  "env_logger",
blob - f17fe4b635e6fdd194f8b7796a60afc20eec4be5
blob + 78efc00c67547bb906e75862b823f5e80ac2a86c
--- Cargo.toml
+++ Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "tesseras-dht"
-version = "0.1.1"
+version = "0.1.2"
 edition = "2024"
 authors = [ "murilo ijanc' <murilo@ijanc.org>" ]
 categories = ["network-programming"]