Skip to content

Commit 0e14e08

Browse files
committed
feat: update version
1 parent 093095e commit 0e14e08

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
@@ -37,7 +37,7 @@ repositories {
3737
Next, add the dependency to your project's `build.gradle(.kts)` file:
3838

3939
```groovy
40-
implementation("io.appwrite:sdk-for-kotlin:0.0.1")
40+
implementation("io.appwrite:sdk-for-kotlin:0.0.1-SNAPSHOT")
4141
```
4242

4343
### Maven
@@ -48,7 +48,7 @@ Add this to your project's `pom.xml` file:
4848
<dependency>
4949
<groupId>io.appwrite</groupId>
5050
<artifactId>sdk-for-kotlin</artifactId>
51-
<version>0.0.1</version>
51+
<version>0.0.1-SNAPSHOT</version>
5252
</dependency>
5353
</dependencies>
5454
```

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
ext {
88
PUBLISH_GROUP_ID = 'io.appwrite'
99
PUBLISH_ARTIFACT_ID = 'sdk-for-kotlin'
10-
PUBLISH_VERSION = '0.0.1'
10+
PUBLISH_VERSION = '0.0.1-SNAPSHOT'
1111
POM_URL = 'https://github.com/appwrite/sdk-for-kotlin'
1212
POM_SCM_URL = 'https://github.com/appwrite/sdk-for-kotlin'
1313
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
@@ -47,7 +47,7 @@ class Client @JvmOverloads constructor(
4747
init {
4848
headers = mutableMapOf(
4949
"content-type" to "application/json",
50-
"x-sdk-version" to "appwrite:kotlin:0.0.1",
50+
"x-sdk-version" to "appwrite:kotlin:0.0.1-SNAPSHOT",
5151
"x-appwrite-response-format" to "0.9.0"
5252
)
5353
config = mutableMapOf()

0 commit comments

Comments
 (0)