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 <noreply@anthropic.com>
12 lines
413 B
Go
12 lines
413 B
Go
package attesto
|
|
|
|
const (
|
|
SDKVersion = "0.3.0"
|
|
DefaultBaseURL = "https://verify.attesto.eu"
|
|
ProofstreamProtocol = "ATTESTO-PROOFSTREAM-001"
|
|
ProtocolVersionAlpha = "0.1-alpha"
|
|
// ProtocolHandshake is sent as X-Attesto-Protocol on every request; the
|
|
// backend answers 426 when it speaks a different protocol generation.
|
|
ProtocolHandshake = ProofstreamProtocol + "/" + ProtocolVersionAlpha
|
|
)
|