From 4f93510ed2d88a953b129c13ea5dde41fbabd0e9 Mon Sep 17 00:00:00 2001 From: Chris O'Neil Date: Thu, 25 Jun 2026 18:30:09 +0100 Subject: [PATCH 1/4] chore(release): cut rc-2026.6.3 --- Cargo.lock | 17 +++++++---------- Cargo.toml | 6 +++--- 2 files changed, 10 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e212fa4..35709fd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -809,7 +809,7 @@ dependencies = [ [[package]] name = "ant-node" -version = "0.14.0" +version = "0.14.1-rc.1" dependencies = [ "alloy", "ant-protocol", @@ -861,9 +861,8 @@ dependencies = [ [[package]] name = "ant-protocol" -version = "2.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f61260c89bbc0039e0643f3e2ec79b1c17aee9d81b58d7edbc52314689489f39" +version = "2.2.1-rc.1" +source = "git+https://github.com/WithAutonomi/ant-protocol?branch=rc-2026.6.3#ea5a252856f1eade54e229fb2fb24c3f2ef69fcb" dependencies = [ "blake3", "bytes", @@ -4866,9 +4865,8 @@ dependencies = [ [[package]] name = "saorsa-core" -version = "0.26.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa8cc1b7f59f97d018760ff150bbb4f217197c41622b83f7085c9cf0424b736e" +version = "0.26.1-rc.1" +source = "git+https://github.com/saorsa-labs/saorsa-core?branch=rc-2026.6.3#fffb96212261e4df9ea47ae81d2a1f88e636ff95" dependencies = [ "anyhow", "async-trait", @@ -4981,9 +4979,8 @@ dependencies = [ [[package]] name = "saorsa-transport" -version = "0.35.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "621d0a207914a8fd6453f25e4bcc369914cbfaf59a2857e898c079b95f52f5bb" +version = "0.35.1-rc.1" +source = "git+https://github.com/saorsa-labs/saorsa-transport?branch=rc-2026.6.3#a201fac4f38f7839850600fde2eaa306018b6ff7" dependencies = [ "anyhow", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 7d08918..59dbb48 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ant-node" -version = "0.14.0" +version = "0.14.1-rc.1" edition = "2021" authors = ["David Irvine "] description = "Pure quantum-proof network node for the Autonomi decentralized network" @@ -39,10 +39,10 @@ mimalloc = "0.1" # Until then, the git pin tracks the matching saorsa-core lineage # (the rc-2026.4.2 branch) so Cargo can unify the wire types here # with ant-protocol's re-exports. -ant-protocol = "2.2.0" +ant-protocol = { git = "https://github.com/WithAutonomi/ant-protocol", branch = "rc-2026.6.3" } # Core (provides EVERYTHING: networking, DHT, security, trust, storage) -saorsa-core = "0.26.0" +saorsa-core = { git = "https://github.com/saorsa-labs/saorsa-core", branch = "rc-2026.6.3" } saorsa-pqc = "0.5" # Payment verification - autonomi network lookup + EVM payment From 228d2481413d4fee32a93b09aaaa7f09c845200b Mon Sep 17 00:00:00 2001 From: Chris O'Neil Date: Fri, 26 Jun 2026 17:52:44 +0100 Subject: [PATCH 2/4] chore(release): roll rc-2026.6.3 to 0.14.1-rc.1 --- Cargo.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 35709fd..2ebde41 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -862,7 +862,7 @@ dependencies = [ [[package]] name = "ant-protocol" version = "2.2.1-rc.1" -source = "git+https://github.com/WithAutonomi/ant-protocol?branch=rc-2026.6.3#ea5a252856f1eade54e229fb2fb24c3f2ef69fcb" +source = "git+https://github.com/WithAutonomi/ant-protocol?branch=rc-2026.6.3#ac0a17ab6808987a2f92f63e1435c1d2b6e7f723" dependencies = [ "blake3", "bytes", @@ -4866,7 +4866,7 @@ dependencies = [ [[package]] name = "saorsa-core" version = "0.26.1-rc.1" -source = "git+https://github.com/saorsa-labs/saorsa-core?branch=rc-2026.6.3#fffb96212261e4df9ea47ae81d2a1f88e636ff95" +source = "git+https://github.com/saorsa-labs/saorsa-core?branch=rc-2026.6.3#0e1506e7132107ce0d1bbd73162fffff94c1356f" dependencies = [ "anyhow", "async-trait", @@ -4980,7 +4980,7 @@ dependencies = [ [[package]] name = "saorsa-transport" version = "0.35.1-rc.1" -source = "git+https://github.com/saorsa-labs/saorsa-transport?branch=rc-2026.6.3#a201fac4f38f7839850600fde2eaa306018b6ff7" +source = "git+https://github.com/saorsa-labs/saorsa-transport?branch=rc-2026.6.3#3b27060b5c9120f9873e8c5bbcc09999fdc45ff8" dependencies = [ "anyhow", "async-trait", From 7575c6146d852f51c876e4be71d8edcc52ee62c6 Mon Sep 17 00:00:00 2001 From: Chris O'Neil Date: Sat, 27 Jun 2026 01:10:44 +0100 Subject: [PATCH 3/4] chore(release): promote rc-2026.6.3 to 0.14.1 --- Cargo.lock | 17 ++++++++++------- Cargo.toml | 6 +++--- 2 files changed, 13 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2ebde41..b17f2a6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -809,7 +809,7 @@ dependencies = [ [[package]] name = "ant-node" -version = "0.14.1-rc.1" +version = "0.14.1" dependencies = [ "alloy", "ant-protocol", @@ -861,8 +861,9 @@ dependencies = [ [[package]] name = "ant-protocol" -version = "2.2.1-rc.1" -source = "git+https://github.com/WithAutonomi/ant-protocol?branch=rc-2026.6.3#ac0a17ab6808987a2f92f63e1435c1d2b6e7f723" +version = "2.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f60ed1cf6fb0070bef8e06c94abeb8d199ec654e06cfc5f680b93c496c7ea7e8" dependencies = [ "blake3", "bytes", @@ -4865,8 +4866,9 @@ dependencies = [ [[package]] name = "saorsa-core" -version = "0.26.1-rc.1" -source = "git+https://github.com/saorsa-labs/saorsa-core?branch=rc-2026.6.3#0e1506e7132107ce0d1bbd73162fffff94c1356f" +version = "0.26.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3f44ef51271c8bfc5b5305f73831a5090fde070553e2a96636feae109b4fdc4" dependencies = [ "anyhow", "async-trait", @@ -4979,8 +4981,9 @@ dependencies = [ [[package]] name = "saorsa-transport" -version = "0.35.1-rc.1" -source = "git+https://github.com/saorsa-labs/saorsa-transport?branch=rc-2026.6.3#3b27060b5c9120f9873e8c5bbcc09999fdc45ff8" +version = "0.35.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c39d5524d6c886e402d9024d927988ea4e80b0105ce04ff03c89191579d2ada" dependencies = [ "anyhow", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 59dbb48..a193eac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ant-node" -version = "0.14.1-rc.1" +version = "0.14.1" edition = "2021" authors = ["David Irvine "] description = "Pure quantum-proof network node for the Autonomi decentralized network" @@ -39,10 +39,10 @@ mimalloc = "0.1" # Until then, the git pin tracks the matching saorsa-core lineage # (the rc-2026.4.2 branch) so Cargo can unify the wire types here # with ant-protocol's re-exports. -ant-protocol = { git = "https://github.com/WithAutonomi/ant-protocol", branch = "rc-2026.6.3" } +ant-protocol = "2.2.1" # Core (provides EVERYTHING: networking, DHT, security, trust, storage) -saorsa-core = { git = "https://github.com/saorsa-labs/saorsa-core", branch = "rc-2026.6.3" } +saorsa-core = "0.26.1" saorsa-pqc = "0.5" # Payment verification - autonomi network lookup + EVM payment From c2676e7090da1becdd8255a913a449f402809183 Mon Sep 17 00:00:00 2001 From: Chris O'Neil Date: Sat, 27 Jun 2026 01:17:23 +0100 Subject: [PATCH 4/4] chore(deps): bump quinn-proto to 0.11.15 (RUSTSEC-2026-0185) --- Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b17f2a6..51c1dc4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4238,9 +4238,9 @@ dependencies = [ [[package]] name = "quinn-proto" -version = "0.11.14" +version = "0.11.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098" +checksum = "4fcb935c5bec503c2f0e306bdd3e58bb9029dcb14fa8d9ac76e3a5256ac0763e" dependencies = [ "aws-lc-rs", "bytes",