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"