Skip to content

Commit e126af8

Browse files
committedSep 7, 2021
Bumped version and updated readme
1 parent e9dc4b2 commit e126af8

File tree

8 files changed

+29
-29
lines changed

8 files changed

+29
-29
lines changed
 

‎README.md

+15-15
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ 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.4.1`](https://search.maven.org/artifact/dev.gitlive/firebase-auth/1.4.1/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.4.1`](https://search.maven.org/artifact/dev.gitlive/firebase-database/1.4.1/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.4.1`](https://search.maven.org/artifact/dev.gitlive/firebase-firestore/1.4.1/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.4.1`](https://search.maven.org/artifact/dev.gitlive/firebase-functions/1.4.1/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.4.1`](https://search.maven.org/artifact/dev.gitlive/firebase-messaging/1.4.1/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.4.1`](https://search.maven.org/artifact/dev.gitlive/firebase-storage/1.4.1/pom) | ![0%](https://img.shields.io/badge/-0%25-lightgrey?style=flat-square) |
21-
| [Remote Config](https://firebase.google.com/docs/remote-config/get-started?platform=android) | [`dev.gitlive:firebase-config:1.4.1`](https://search.maven.org/artifact/dev.gitlive/firebase-config/1.4.1/pom) | ![20%](https://img.shields.io/badge/-20%25-orange?style=flat-square) |
15+
| [Authentication](https://firebase.google.com/docs/auth#kotlin-android) | [`dev.gitlive:firebase-auth:1.4.2`](https://search.maven.org/artifact/dev.gitlive/firebase-auth/1.4.2/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.4.2`](https://search.maven.org/artifact/dev.gitlive/firebase-database/1.4.2/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.4.2`](https://search.maven.org/artifact/dev.gitlive/firebase-firestore/1.4.2/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.4.2`](https://search.maven.org/artifact/dev.gitlive/firebase-functions/1.4.2/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.4.2`](https://search.maven.org/artifact/dev.gitlive/firebase-messaging/1.4.2/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.4.2`](https://search.maven.org/artifact/dev.gitlive/firebase-storage/1.4.2/pom) | ![0%](https://img.shields.io/badge/-0%25-lightgrey?style=flat-square) |
21+
| [Remote Config](https://firebase.google.com/docs/remote-config/get-started?platform=android) | [`dev.gitlive:firebase-config:1.4.2`](https://search.maven.org/artifact/dev.gitlive/firebase-config/1.4.2/pom) | ![20%](https://img.shields.io/badge/-20%25-orange?style=flat-square) |
2222

2323

2424

@@ -66,7 +66,7 @@ The Firebase Kotlin SDK uses Kotlin serialization to read and write custom class
6666
```groovy
6767
plugins {
6868
kotlin("multiplatform") // or kotlin("jvm") or any other kotlin plugin
69-
kotlin("plugin.serialization") version "1.5.10"
69+
kotlin("plugin.serialization") version "1.5.30"
7070
}
7171
```
7272

@@ -166,13 +166,13 @@ If you are building a Kotlin multiplatform library which will be consumed from J
166166

167167
```json
168168
"dependencies": {
169-
"@gitlive/firebase-auth": "1.4.1",
170-
"@gitlive/firebase-database": "1.4.1",
171-
"@gitlive/firebase-firestore": "1.4.1",
172-
"@gitlive/firebase-functions": "1.4.1",
173-
"@gitlive/firebase-storage": "1.4.1",
174-
"@gitlive/firebase-messaging": "1.4.1",
175-
"@gitlive/firebase-config": "1.4.1"
169+
"@gitlive/firebase-auth": "1.4.2",
170+
"@gitlive/firebase-database": "1.4.2",
171+
"@gitlive/firebase-firestore": "1.4.2",
172+
"@gitlive/firebase-functions": "1.4.2",
173+
"@gitlive/firebase-storage": "1.4.2",
174+
"@gitlive/firebase-messaging": "1.4.2",
175+
"@gitlive/firebase-config": "1.4.2"
176176
}
177177
```
178178

‎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.4.1",
26+
"@gitlive/firebase-common": "1.4.2",
2727
"firebase": "8.10.0",
2828
"kotlin": "1.5.30",
2929
"kotlinx-coroutines-core": "1.5.1"

‎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.4.1",
26+
"@gitlive/firebase-app": "1.4.2",
2727
"firebase": "8.10.0",
2828
"kotlin": "1.5.30",
2929
"kotlinx-coroutines-core": "1.5.1"

‎firebase-config/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.4.1",
26+
"@gitlive/firebase-app": "1.4.2",
2727
"firebase": "8.10.0",
2828
"kotlin": "1.5.30",
2929
"kotlinx-coroutines-core": "1.5.1"

‎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.4.1",
26+
"@gitlive/firebase-app": "1.4.2",
2727
"firebase": "8.10.0",
2828
"kotlin": "1.5.30",
2929
"kotlinx-coroutines-core": "1.5.1"

‎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.4.1",
26+
"@gitlive/firebase-app": "1.4.2",
2727
"firebase": "8.10.0",
2828
"kotlin": "1.5.30",
2929
"kotlinx-coroutines-core": "1.5.1"

‎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.4.1",
26+
"@gitlive/firebase-app": "1.4.2",
2727
"firebase": "8.10.0",
2828
"kotlin": "1.5.30",
2929
"kotlinx-coroutines-core": "1.5.1"

‎gradle.properties

+8-8
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ kotlin.native.enableParallelExecutionCheck=false
1414
kotlin.setJvmTargetFromAndroidCompileOptions=true
1515
org.gradle.jvmargs=-Xmx2048m
1616
org.gradle.parallel=true
17-
#systemProp.org.gradle.internal.publish.checksums.insecure=true enable if https://github.com/gradle/gradle/issues/11308 happens during publishing
17+
systemProp.org.gradle.internal.publish.checksums.insecure=true
1818
testOptions.unitTests.isIncludeAndroidResources=true
1919

2020
# Versions:
21-
firebase-app.version=1.4.1
22-
firebase-auth.version=1.4.1
23-
firebase-common.version=1.4.1
24-
firebase-database.version=1.4.1
25-
firebase-firestore.version=1.4.1
26-
firebase-functions.version=1.4.1
27-
firebase-config.version=1.4.1
21+
firebase-app.version=1.4.2
22+
firebase-auth.version=1.4.2
23+
firebase-common.version=1.4.2
24+
firebase-database.version=1.4.2
25+
firebase-firestore.version=1.4.2
26+
firebase-functions.version=1.4.2
27+
firebase-config.version=1.4.2

0 commit comments

Comments
 (0)
Failed to load comments.