File tree 2 files changed +4
-4
lines changed
src/main/kotlin/io/appwrite
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ repositories {
39
39
Next, add the dependency to your project's ` build.gradle(.kts) ` file:
40
40
41
41
``` groovy
42
- implementation("io.appwrite:sdk-for-kotlin:4.0.1 ")
42
+ implementation("io.appwrite:sdk-for-kotlin:4.1.0 ")
43
43
```
44
44
45
45
### Maven
@@ -50,7 +50,7 @@ Add this to your project's `pom.xml` file:
50
50
<dependency >
51
51
<groupId >io.appwrite</groupId >
52
52
<artifactId >sdk-for-kotlin</artifactId >
53
- <version >4.0.1 </version >
53
+ <version >4.1.0 </version >
54
54
</dependency >
55
55
</dependencies >
56
56
```
Original file line number Diff line number Diff line change @@ -62,11 +62,11 @@ class Client @JvmOverloads constructor(
62
62
init {
63
63
headers = mutableMapOf (
64
64
" content-type" to " application/json" ,
65
- " user-agent" to " AppwriteKotlinSDK/4.0.1 ${System .getProperty(" http.agent" )} " ,
65
+ " user-agent" to " AppwriteKotlinSDK/4.1.0 ${System .getProperty(" http.agent" )} " ,
66
66
" x-sdk-name" to " Kotlin" ,
67
67
" x-sdk-platform" to " server" ,
68
68
" x-sdk-language" to " kotlin" ,
69
- " x-sdk-version" to " 4.0.1 " , " x-appwrite-response-format" to " 1.4.0"
69
+ " x-sdk-version" to " 4.1.0 " , " x-appwrite-response-format" to " 1.4.0"
70
70
)
71
71
config = mutableMapOf ()
72
72
You can’t perform that action at this time.
0 commit comments