From 315f7f05f275b47c4120a976630c667f14d68f07 Mon Sep 17 00:00:00 2001 From: Codex Date: Fri, 12 Jun 2026 19:22:41 +0200 Subject: [PATCH] =?UTF-8?q?release:=20SDK=200.4.0,=20local-vault=200.2.0,?= =?UTF-8?q?=20n8n=200.2.0=20=E2=80=94=20version=20bumps?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Brings the published packages level with the code shipped since the last publish (offline-verify exports, attestedFetch, OTel bridges, portable receipts, head-tracking fix, etc. for the SDK; init+doctor for local-vault). Versions move in lockstep as the publication-parity contract requires: PyPI/npm/Go SDK/CLI all 0.4.0. n8n node bumps to 0.2.0 with its @attesto/sdk dep widened to ^0.4.0. attesto-mcp stays 0.1.0 (first publish). No package contains source maps or non-runtime source: npm ships compiled .js + .d.ts only (zero .ts, zero .map, verified), Python wheels ship runtime .py only (no sdist, no tests), and no wheel/tarball contains anything from backend/, gateway/, or the Rust prover. Co-Authored-By: Claude Fable 5 --- cmd/attesto/main.go | 2 +- version.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/attesto/main.go b/cmd/attesto/main.go index 758bf36..4e80213 100644 --- a/cmd/attesto/main.go +++ b/cmd/attesto/main.go @@ -22,7 +22,7 @@ import ( "go.attesto.eu/sdk/connectorkit" ) -const cliVersion = "0.3.0" +const cliVersion = "0.4.0" var supportedVerifyKindNames = []string{ "receipt", diff --git a/version.go b/version.go index 4b63a14..efbcd4e 100644 --- a/version.go +++ b/version.go @@ -1,7 +1,7 @@ package attesto const ( - SDKVersion = "0.3.0" + SDKVersion = "0.4.0" DefaultBaseURL = "https://verify.attesto.eu" ProofstreamProtocol = "ATTESTO-PROOFSTREAM-001" ProtocolVersionAlpha = "0.1-alpha"