Skip to content

Commit 4435ff1

Browse files
committed
feat: update kotlin sdk to 0.12.x
1 parent f9b6a77 commit 4435ff1

File tree

3 files changed

+4
-4
lines changed

3 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:0.1.1")
42+
implementation("io.appwrite:sdk-for-kotlin:0.2.0-SNAPSHOT")
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>0.1.1</version>
53+
<version>0.2.0-SNAPSHOT</version>
5454
</dependency>
5555
</dependencies>
5656
```

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
ext {
77
PUBLISH_GROUP_ID = 'io.appwrite'
88
PUBLISH_ARTIFACT_ID = 'sdk-for-kotlin'
9-
PUBLISH_VERSION = '0.1.1'
9+
PUBLISH_VERSION = '0.2.0-SNAPSHOT'
1010
POM_URL = 'https://github.com/appwrite/sdk-for-kotlin'
1111
POM_SCM_URL = 'https://github.com/appwrite/sdk-for-kotlin'
1212
POM_ISSUE_URL = 'https://github.com/appwrite/sdk-for-kotlin/issues'

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class Client @JvmOverloads constructor(
5555
init {
5656
headers = mutableMapOf(
5757
"content-type" to "application/json",
58-
"x-sdk-version" to "appwrite:kotlin:0.1.1",
58+
"x-sdk-version" to "appwrite:kotlin:0.2.0-SNAPSHOT",
5959
"x-appwrite-response-format" to "0.11.0"
6060
)
6161
config = mutableMapOf()

0 commit comments

Comments
 (0)