File tree 3 files changed +4
-4
lines changed
src/main/kotlin/io/appwrite
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ repositories {
37
37
Next, add the dependency to your project's ` build.gradle(.kts) ` file:
38
38
39
39
``` groovy
40
- implementation("io.appwrite:sdk-for-kotlin:0.0.1")
40
+ implementation("io.appwrite:sdk-for-kotlin:0.0.1-SNAPSHOT ")
41
41
```
42
42
43
43
### Maven
@@ -48,7 +48,7 @@ Add this to your project's `pom.xml` file:
48
48
<dependency >
49
49
<groupId >io.appwrite</groupId >
50
50
<artifactId >sdk-for-kotlin</artifactId >
51
- <version >0.0.1</version >
51
+ <version >0.0.1-SNAPSHOT </version >
52
52
</dependency >
53
53
</dependencies >
54
54
```
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ plugins {
7
7
ext {
8
8
PUBLISH_GROUP_ID = ' io.appwrite'
9
9
PUBLISH_ARTIFACT_ID = ' sdk-for-kotlin'
10
- PUBLISH_VERSION = ' 0.0.1'
10
+ PUBLISH_VERSION = ' 0.0.1-SNAPSHOT '
11
11
POM_URL = ' https://github.com/appwrite/sdk-for-kotlin'
12
12
POM_SCM_URL = ' https://github.com/appwrite/sdk-for-kotlin'
13
13
POM_ISSUE_URL = ' https://github.com/appwrite/sdk-for-kotlin/issues'
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ class Client @JvmOverloads constructor(
47
47
init {
48
48
headers = mutableMapOf (
49
49
" 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 " ,
51
51
" x-appwrite-response-format" to " 0.9.0"
52
52
)
53
53
config = mutableMapOf ()
You can’t perform that action at this time.
0 commit comments