File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
src/main/kotlin/io/appwrite Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ repositories {
36
36
Next, add the dependency to your project's ` build.gradle(.kts) ` file:
37
37
38
38
``` groovy
39
- implementation("io.appwrite:sdk-for-kotlin:0.0.0-SNAPSHOT ")
39
+ implementation("io.appwrite:sdk-for-kotlin:0.0.0")
40
40
```
41
41
42
42
### Maven
@@ -47,7 +47,7 @@ Add this to your project's `pom.xml` file:
47
47
<dependency >
48
48
<groupId >io.appwrite</groupId >
49
49
<artifactId >sdk-for-kotlin</artifactId >
50
- <version >0.0.0-SNAPSHOT </version >
50
+ <version >0.0.0</version >
51
51
</dependency >
52
52
</dependencies >
53
53
```
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.0-SNAPSHOT '
10
+ PUBLISH_VERSION = ' 0.0.0'
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.0-SNAPSHOT " ,
50
+ " x-sdk-version" to " appwrite:kotlin:0.0.0" ,
51
51
" x-appwrite-response-format" to " 0.8.0"
52
52
)
53
53
config = mutableMapOf ()
You can’t perform that action at this time.
0 commit comments