aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormurilo ijanc2026-03-27 00:48:23 -0300
committermurilo ijanc2026-03-27 00:48:23 -0300
commit18fa0f13f64e69bf70addc1e28a8ab0a39207eb2 (patch)
tree09038aba1cb1e63ee0232369e523facfa7820925
parent660bc943ba26968692e731963e6b324299519542 (diff)
downloadtesseras-paste-18fa0f13f64e69bf70addc1e28a8ab0a39207eb2.tar.gz
Bump version to 0.1.2, update tesseras-dht to 0.1.3v0.1.2
-rw-r--r--CHANGELOG.md9
-rw-r--r--Cargo.lock6
-rw-r--r--Cargo.toml4
3 files changed, 14 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c9b5122..5289006 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,15 @@ 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.2] - 2026-03-27
+
+### Changed
+
+- Update tesseras-dht to 0.1.3: fixes find_value_reply offset bug,
+ adds chunked value replies to avoid IP fragmentation, and increases
+ UDP recv buffer to prevent signature verification failures on large
+ pastes.
+
## [0.1.1] - 2026-03-25
### Added
diff --git a/Cargo.lock b/Cargo.lock
index 688f5bb..8f54a02 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -546,9 +546,9 @@ dependencies = [
[[package]]
name = "tesseras-dht"
-version = "0.1.2"
+version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9d3fe1b55bc14e2a7651441c82c3bbf1962acd9add00edf7a19f73adabfbdefe"
+checksum = "b285288b07dd1e2b4e7b1b1868090a8fb6c3d544e78ca089ba7ad3c01f5ae5f3"
dependencies = [
"ed25519-dalek",
"log",
@@ -558,7 +558,7 @@ dependencies = [
[[package]]
name = "tesseras-paste"
-version = "0.1.1"
+version = "0.1.2"
dependencies = [
"chacha20poly1305",
"env_logger",
diff --git a/Cargo.toml b/Cargo.toml
index 03bc0ac..ed1af59 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tesseras-paste"
-version = "0.1.1"
+version = "0.1.2"
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.2"
+tesseras-dht = "=0.1.3"