We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 098cc93 commit 830d0eaCopy full SHA for 830d0ea
Sources/Supabase/SupabaseClient.swift
@@ -72,7 +72,10 @@ public class SupabaseClient {
72
authURL = supabaseURL.appendingPathComponent("/auth/v1")
73
storageURL = supabaseURL.appendingPathComponent("/storage/v1")
74
75
- defaultHeaders = ["X-Client-Info": "supabase-swift/0.0.4", "apikey": supabaseKey]
+ defaultHeaders = [
76
+ "X-Client-Info": "supabase-swift/\(version)",
77
+ "apikey": supabaseKey,
78
+ ]
79
80
auth = GoTrueClient(
81
url: authURL,
Sources/Supabase/Version.swift
@@ -0,0 +1 @@
1
+let version = "0.0.7"
0 commit comments