Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit df86e2b

Browse files
authoredSep 2, 2021
Merge pull request #9 from appwrite/master
Appwrite 0.10 support
2 parents 88635b8 + e4bad87 commit df86e2b

File tree

114 files changed

+474
-231
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

114 files changed

+474
-231
lines changed
 

‎README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
![Maven Central](https://img.shields.io/maven-central/v/io.appwrite/sdk-for-kotlin.svg?color=green&style=flat-square)
44
![License](https://img.shields.io/github/license/appwrite/sdk-for-kotlin.svg?style=flat-square)
5-
![Version](https://img.shields.io/badge/api%20version-0.9.0-blue.svg?style=flat-square)
5+
![Version](https://img.shields.io/badge/api%20version-0.10.0-blue.svg?style=flat-square)
66
[![Twitter Account](https://img.shields.io/twitter/follow/appwrite_io?color=00acee&label=twitter&style=flat-square)](https://twitter.com/appwrite_io)
77
[![Discord](https://img.shields.io/discord/564160730845151244?label=discord&style=flat-square)](https://appwrite.io/discord)
88

9-
**This SDK is compatible with Appwrite server version 0.9.x. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-kotlin/releases).**
9+
**This SDK is compatible with Appwrite server version 0.10.x. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-kotlin/releases).**
1010

1111
> This is the Kotlin SDK for integrating with Appwrite from your Kotlin server-side code. If you're looking for the Android SDK you should check [appwrite/sdk-for-android](https://github.com/appwrite/sdk-for-android)
1212
@@ -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.0.1")
42+
implementation("io.appwrite:sdk-for-kotlin:0.1.0")
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.0.1</version>
53+
<version>0.1.0</version>
5454
</dependency>
5555
</dependencies>
5656
```
@@ -135,7 +135,7 @@ suspend fun main() {
135135

136136
### Learn more
137137

138-
You can use following resources to learn more and get help
138+
You can use the following resources to learn more and get help
139139

140140
- 🚀 [Getting Started Tutorial](https://appwrite.io/docs/getting-started-for-server)
141141
- 📜 [Appwrite Docs](https://appwrite.io/docs)

‎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.1'
10+
PUBLISH_VERSION = '0.1.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'

0 commit comments

Comments
 (0)