From 781a149140095fe7f33ab7435b8f26d394d3e297 Mon Sep 17 00:00:00 2001 From: Codex Date: Thu, 11 Jun 2026 21:41:30 +0200 Subject: [PATCH] sdk(D.1 step 3 + release): module rename to go.attesto.eu/sdk + 0.3.0 bump MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit go.mod becomes module go.attesto.eu/sdk; all internal imports (CLI, connectorkit, examples), the publication-evidence/registry contracts, docs, and the README install line follow. No rotz.ai hostname remains in the customer-visible Go chain. All Go packages build and pass under the new path. All three SDKs bump to 0.3.0 (Python version.py/pyproject, TS package.json + SDK_VERSION, Go SDKVersion + cliVersion) — the Phase-1 release version, shipped atomically with the registry publish so the publication-evidence contract stays consistent. Full sweep green: Python 84, TS 55, Go 3 packages. Co-Authored-By: Claude Fable 5 --- README.md | 4 ++-- cmd/attesto/main.go | 6 +++--- examples/proofstream/main.go | 2 +- go.mod | 2 +- version.go | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 88135ae..b631d7a 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ tooling, CI, evidence exporters, and operator automation. Do not embed Attesto A ## Install ```shell -go get git.rotz.ai/rotzmediagroup/attesto-v1/sdk/go +go get go.attesto.eu/sdk ``` The first release is VCS-resolved from the Attesto repository. It intentionally @@ -25,7 +25,7 @@ import ( "os" "time" - attesto "git.rotz.ai/rotzmediagroup/attesto-v1/sdk/go" + attesto "go.attesto.eu/sdk" ) func main() { diff --git a/cmd/attesto/main.go b/cmd/attesto/main.go index 06dfdf6..cfab01f 100644 --- a/cmd/attesto/main.go +++ b/cmd/attesto/main.go @@ -18,11 +18,11 @@ import ( "strings" "time" - attesto "git.rotz.ai/rotzmediagroup/attesto-v1/sdk/go" - "git.rotz.ai/rotzmediagroup/attesto-v1/sdk/go/connectorkit" + attesto "go.attesto.eu/sdk" + "go.attesto.eu/sdk/connectorkit" ) -const cliVersion = "0.2.0" +const cliVersion = "0.3.0" var supportedVerifyKindNames = []string{ "receipt", diff --git a/examples/proofstream/main.go b/examples/proofstream/main.go index 9dd096d..7566d21 100644 --- a/examples/proofstream/main.go +++ b/examples/proofstream/main.go @@ -6,7 +6,7 @@ import ( "log" "os" - attesto "git.rotz.ai/rotzmediagroup/attesto-v1/sdk/go" + attesto "go.attesto.eu/sdk" ) func main() { diff --git a/go.mod b/go.mod index 72c1bf3..0eaa037 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module git.rotz.ai/rotzmediagroup/attesto-v1/sdk/go +module go.attesto.eu/sdk go 1.24 diff --git a/version.go b/version.go index 3af03b0..4b63a14 100644 --- a/version.go +++ b/version.go @@ -1,7 +1,7 @@ package attesto const ( - SDKVersion = "0.2.0" + SDKVersion = "0.3.0" DefaultBaseURL = "https://verify.attesto.eu" ProofstreamProtocol = "ATTESTO-PROOFSTREAM-001" ProtocolVersionAlpha = "0.1-alpha"