Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func TestClientSendsCorrectHeaders(t *testing.T) {
assert.Equal(t, "application/vnd.api+json", receivedAccept)
assert.Equal(t, "test-api-key", receivedAPIKey)
assert.Equal(t, apiVersion, receivedAPIVersion)
assert.Equal(t, "didww-go-sdk/3.0.0-dev", receivedUserAgent)
assert.Equal(t, "didww-go-sdk/3.0.0", receivedUserAgent)
}

func TestClientHandlesHTTPErrors(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion repository.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ func (r *SingletonRepository[T]) Find(ctx context.Context) (*T, error) {
const (
jsonapiMediaType = "application/vnd.api+json"
apiVersion = "2026-04-16"
sdkVersion = "3.0.0-dev"
sdkVersion = "3.0.0"
)

// doRequest executes an HTTP request and returns the response body.
Expand Down
Loading