Skip to content

Commit

Permalink
Merge pull request #24 from appwrite/dev
Browse files Browse the repository at this point in the history
Update attributes
  • Loading branch information
abnegate authored Sep 10, 2024
2 parents b692bed + 31c9dab commit 1bd199f
Show file tree
Hide file tree
Showing 13 changed files with 270 additions and 21 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# # Change Log

## 0.1.0
## 0.2.0

4 changes: 2 additions & 2 deletions client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,11 @@ type Client struct {
func New(optionalSetters ...ClientOption) Client {
headers := map[string]string{
"X-Appwrite-Response-Format" : "1.6.0",
"user-agent" : fmt.Sprintf("AppwriteGoSDK/0.1.0 (%s; %s)", runtime.GOOS, runtime.GOARCH),
"user-agent" : fmt.Sprintf("AppwriteGoSDK/0.2.0 (%s; %s)", runtime.GOOS, runtime.GOARCH),
"x-sdk-name": "Go",
"x-sdk-platform": "server",
"x-sdk-language": "go",
"x-sdk-version": "0.1.0",
"x-sdk-version": "0.2.0",
}
httpClient, err := GetDefaultClient(defaultTimeout)
if err != nil {
Expand Down
Loading

0 comments on commit 1bd199f

Please sign in to comment.