mirror of
https://github.com/appwrite/sdk-for-kotlin.git
synced 2026-04-07 19:17:44 +00:00
Update version
This commit is contained in:
@@ -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`
|
||||
|
||||
@@ -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>
|
||||
```
|
||||
|
||||
@@ -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",
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user