Update version

This commit is contained in:
Jake Barnby
2025-12-17 19:22:49 +13:00
parent 1671e213c8
commit 55ac178d45
3 changed files with 8 additions and 4 deletions
+4
View File
@@ -1,5 +1,9 @@
# Change Log
## 13.1.0
* Added ability to create attributes and indexes synchronously while creating a collection
## 13.0.0
* Rename `VCSDeploymentType` enum to `VCSReferenceType`
+2 -2
View File
@@ -39,7 +39,7 @@ repositories {
Next, add the dependency to your project's `build.gradle(.kts)` file:
```groovy
implementation("io.appwrite:sdk-for-kotlin:13.0.0")
implementation("io.appwrite:sdk-for-kotlin:13.1.0")
```
### Maven
@@ -50,7 +50,7 @@ Add this to your project's `pom.xml` file:
<dependency>
<groupId>io.appwrite</groupId>
<artifactId>sdk-for-kotlin</artifactId>
<version>13.0.0</version>
<version>13.1.0</version>
</dependency>
</dependencies>
```
+2 -2
View File
@@ -58,11 +58,11 @@ class Client @JvmOverloads constructor(
init {
headers = mutableMapOf(
"content-type" to "application/json",
"user-agent" to "AppwriteKotlinSDK/13.0.0 ${System.getProperty("http.agent")}",
"user-agent" to "AppwriteKotlinSDK/13.1.0 ${System.getProperty("http.agent")}",
"x-sdk-name" to "Kotlin",
"x-sdk-platform" to "server",
"x-sdk-language" to "kotlin",
"x-sdk-version" to "13.0.0",
"x-sdk-version" to "13.1.0",
"x-appwrite-response-format" to "1.8.0",
)