Skip to content

Commit 7a56db1

Browse files
committed
Fix between query output
1 parent 99d9ff6 commit 7a56db1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ repositories {
3939
Next, add the dependency to your project's `build.gradle(.kts)` file:
4040

4141
```groovy
42-
implementation("io.appwrite:sdk-for-kotlin:4.0.1")
42+
implementation("io.appwrite:sdk-for-kotlin:4.1.0")
4343
```
4444

4545
### Maven
@@ -50,7 +50,7 @@ Add this to your project's `pom.xml` file:
5050
<dependency>
5151
<groupId>io.appwrite</groupId>
5252
<artifactId>sdk-for-kotlin</artifactId>
53-
<version>4.0.1</version>
53+
<version>4.1.0</version>
5454
</dependency>
5555
</dependencies>
5656
```

src/main/kotlin/io/appwrite/Client.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ class Client @JvmOverloads constructor(
6262
init {
6363
headers = mutableMapOf(
6464
"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")}",
6666
"x-sdk-name" to "Kotlin",
6767
"x-sdk-platform" to "server",
6868
"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"
7070
)
7171
config = mutableMapOf()
7272

0 commit comments

Comments
 (0)