Skip to content

Commit d45afa7

Browse files
committedMay 14, 2021
Bumped version and updated readme
1 parent b56062f commit d45afa7

File tree

7 files changed

+23
-23
lines changed

7 files changed

+23
-23
lines changed
 

‎README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ The following libraries are available for the various Firebase products.
1212

1313
| Service or Product | Gradle Dependency | API Coverage |
1414
| ------------------------------------------------------------------------------------ | :-----------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
15-
| [Authentication](https://firebase.google.com/docs/auth#kotlin-android) | [`dev.gitlive:firebase-auth:1.2.0`](https://search.maven.org/artifact/dev.gitlive/firebase-auth/1.2.0/pom) | [![80%](https://img.shields.io/badge/-80%25-green?style=flat-square)](/firebase-auth/src/commonMain/kotlin/dev/gitlive/firebase/auth/auth.kt) |
16-
| [Realtime Database](https://firebase.google.com/docs/database#kotlin-android) | [`dev.gitlive:firebase-database:1.2.0`](https://search.maven.org/artifact/dev.gitlive/firebase-database/1.2.0/pom) | [![70%](https://img.shields.io/badge/-70%25-orange?style=flat-square)](/firebase-database/src/commonMain/kotlin/dev/gitlive/firebase/database/database.kt) |
17-
| [Cloud Firestore](https://firebase.google.com/docs/firestore#kotlin-android) | [`dev.gitlive:firebase-firestore:1.2.0`](https://search.maven.org/artifact/dev.gitlive/firebase-firestore/1.2.0/pom) | [![60%](https://img.shields.io/badge/-60%25-orange?style=flat-square)](/firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/firestore.kt) |
18-
| [Cloud Functions](https://firebase.google.com/docs/functions/callable#kotlin-android)| [`dev.gitlive:firebase-functions:1.2.0`](https://search.maven.org/artifact/dev.gitlive/firebase-functions/1.2.0/pom) | [![80%](https://img.shields.io/badge/-80%25-green?style=flat-square)](/firebase-functions/src/commonMain/kotlin/dev/gitlive/firebase/functions/functions.kt) |
19-
| [Cloud Messaging](https://firebase.google.com/docs/messaging#kotlin-android) | [`dev.gitlive:firebase-messaging:1.2.0`](https://search.maven.org/artifact/dev.gitlive/firebase-messaging/1.2.0/pom) | ![0%](https://img.shields.io/badge/-0%25-lightgrey?style=flat-square) |
20-
| [Cloud Storage](https://firebase.google.com/docs/storage#kotlin-android) | [`dev.gitlive:firebase-storage:1.2.0`](https://search.maven.org/artifact/dev.gitlive/firebase-storage/1.2.0/pom) | ![0%](https://img.shields.io/badge/-0%25-lightgrey?style=flat-square) |
15+
| [Authentication](https://firebase.google.com/docs/auth#kotlin-android) | [`dev.gitlive:firebase-auth:1.3.0`](https://search.maven.org/artifact/dev.gitlive/firebase-auth/1.3.0/pom) | [![80%](https://img.shields.io/badge/-80%25-green?style=flat-square)](/firebase-auth/src/commonMain/kotlin/dev/gitlive/firebase/auth/auth.kt) |
16+
| [Realtime Database](https://firebase.google.com/docs/database#kotlin-android) | [`dev.gitlive:firebase-database:1.3.0`](https://search.maven.org/artifact/dev.gitlive/firebase-database/1.3.0/pom) | [![70%](https://img.shields.io/badge/-70%25-orange?style=flat-square)](/firebase-database/src/commonMain/kotlin/dev/gitlive/firebase/database/database.kt) |
17+
| [Cloud Firestore](https://firebase.google.com/docs/firestore#kotlin-android) | [`dev.gitlive:firebase-firestore:1.3.0`](https://search.maven.org/artifact/dev.gitlive/firebase-firestore/1.3.0/pom) | [![60%](https://img.shields.io/badge/-60%25-orange?style=flat-square)](/firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore/firestore.kt) |
18+
| [Cloud Functions](https://firebase.google.com/docs/functions/callable#kotlin-android)| [`dev.gitlive:firebase-functions:1.3.0`](https://search.maven.org/artifact/dev.gitlive/firebase-functions/1.3.0/pom) | [![80%](https://img.shields.io/badge/-80%25-green?style=flat-square)](/firebase-functions/src/commonMain/kotlin/dev/gitlive/firebase/functions/functions.kt) |
19+
| [Cloud Messaging](https://firebase.google.com/docs/messaging#kotlin-android) | [`dev.gitlive:firebase-messaging:1.3.0`](https://search.maven.org/artifact/dev.gitlive/firebase-messaging/1.3.0/pom) | ![0%](https://img.shields.io/badge/-0%25-lightgrey?style=flat-square) |
20+
| [Cloud Storage](https://firebase.google.com/docs/storage#kotlin-android) | [`dev.gitlive:firebase-storage:1.3.0`](https://search.maven.org/artifact/dev.gitlive/firebase-storage/1.3.0/pom) | ![0%](https://img.shields.io/badge/-0%25-lightgrey?style=flat-square) |
2121

2222
Is the Firebase library or API you need missing? [Create an issue](https://github.com/GitLiveApp/firebase-kotlin-sdk/issues/new?labels=API+coverage&template=increase-api-coverage.md&title=Add+%5Bclass+name%5D.%5Bfunction+name%5D+to+%5Blibrary+name%5D+for+%5Bplatform+names%5D) to request additional API coverage or be awesome and [submit a PR](https://github.com/GitLiveApp/firebase-kotlin-sdk/fork)
2323

@@ -163,12 +163,12 @@ If you are building a Kotlin multiplatform library which will be consumed from J
163163

164164
```json
165165
"dependencies": {
166-
"@gitlive/firebase-auth": "1.2.0",
167-
"@gitlive/firebase-database": "1.2.0",
168-
"@gitlive/firebase-firestore": "1.2.0",
169-
"@gitlive/firebase-functions": "1.2.0",
170-
"@gitlive/firebase-storage": "1.2.0",
171-
"@gitlive/firebase-messaging": "1.2.0"
166+
"@gitlive/firebase-auth": "1.3.0",
167+
"@gitlive/firebase-database": "1.3.0",
168+
"@gitlive/firebase-firestore": "1.3.0",
169+
"@gitlive/firebase-functions": "1.3.0",
170+
"@gitlive/firebase-storage": "1.3.0",
171+
"@gitlive/firebase-messaging": "1.3.0"
172172
}
173173
```
174174

‎firebase-app/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
},
2424
"homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk",
2525
"dependencies": {
26-
"@gitlive/firebase-common": "1.2.0",
26+
"@gitlive/firebase-common": "1.3.0",
2727
"firebase": "8.5.0",
2828
"kotlin": "1.4.31",
2929
"kotlinx-coroutines-core": "1.4.3"

‎firebase-auth/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
},
2424
"homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk",
2525
"dependencies": {
26-
"@gitlive/firebase-app": "1.2.0",
26+
"@gitlive/firebase-app": "1.3.0",
2727
"firebase": "8.5.0",
2828
"kotlin": "1.4.31",
2929
"kotlinx-coroutines-core": "1.4.3"

‎firebase-database/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
},
2424
"homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk",
2525
"dependencies": {
26-
"@gitlive/firebase-app": "1.2.0",
26+
"@gitlive/firebase-app": "1.3.0",
2727
"firebase": "8.5.0",
2828
"kotlin": "1.4.31",
2929
"kotlinx-coroutines-core": "1.4.3"

‎firebase-firestore/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
},
2424
"homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk",
2525
"dependencies": {
26-
"@gitlive/firebase-app": "1.2.0",
26+
"@gitlive/firebase-app": "1.3.0",
2727
"firebase": "8.5.0",
2828
"kotlin": "1.4.31",
2929
"kotlinx-coroutines-core": "1.4.3"

‎firebase-functions/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
},
2424
"homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk",
2525
"dependencies": {
26-
"@gitlive/firebase-app": "1.2.0",
26+
"@gitlive/firebase-app": "1.3.0",
2727
"firebase": "8.5.0",
2828
"kotlin": "1.4.31",
2929
"kotlinx-coroutines-core": "1.4.3"

‎gradle.properties

+6-6
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ org.gradle.parallel=true
1818
testOptions.unitTests.isIncludeAndroidResources = true
1919

2020
# Versions:
21-
firebase-app.version=1.2.0
22-
firebase-auth.version=1.2.0
23-
firebase-common.version=1.2.0
24-
firebase-database.version=1.2.0
25-
firebase-firestore.version=1.2.0
26-
firebase-functions.version=1.2.0
21+
firebase-app.version=1.3.0
22+
firebase-auth.version=1.3.0
23+
firebase-common.version=1.3.0
24+
firebase-database.version=1.3.0
25+
firebase-firestore.version=1.3.0
26+
firebase-functions.version=1.3.0

0 commit comments

Comments
 (0)
Failed to load comments.