Skip to content

Commit ce7ca82

Browse files
committed
feat: update version to 0.0.0
1 parent 1f9ac94 commit ce7ca82

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ repositories {
3636
Next, add the dependency to your project's `build.gradle(.kts)` file:
3737

3838
```groovy
39-
implementation("io.appwrite:sdk-for-kotlin:0.0.0-SNAPSHOT")
39+
implementation("io.appwrite:sdk-for-kotlin:0.0.0")
4040
```
4141

4242
### Maven
@@ -47,7 +47,7 @@ Add this to your project's `pom.xml` file:
4747
<dependency>
4848
<groupId>io.appwrite</groupId>
4949
<artifactId>sdk-for-kotlin</artifactId>
50-
<version>0.0.0-SNAPSHOT</version>
50+
<version>0.0.0</version>
5151
</dependency>
5252
</dependencies>
5353
```

build.gradle

Lines changed: 1 addition & 1 deletion
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.0-SNAPSHOT'
10+
PUBLISH_VERSION = '0.0.0'
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

Lines changed: 1 addition & 1 deletion
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.0-SNAPSHOT",
50+
"x-sdk-version" to "appwrite:kotlin:0.0.0",
5151
"x-appwrite-response-format" to "0.8.0"
5252
)
5353
config = mutableMapOf()

0 commit comments

Comments
 (0)