From 1120a8d7477dd698807b011d8b072726ea0aceb2 Mon Sep 17 00:00:00 2001 From: Andrew Reed Date: Fri, 16 Jul 2021 11:14:04 +0100 Subject: [PATCH] Bumped to 1.4.1 --- README.md | 28 ++++++++++++++-------------- firebase-app/package.json | 2 +- firebase-auth/package.json | 2 +- firebase-config/package.json | 2 +- firebase-database/package.json | 2 +- firebase-firestore/package.json | 2 +- firebase-functions/package.json | 2 +- gradle.properties | 14 +++++++------- 8 files changed, 27 insertions(+), 27 deletions(-) diff --git a/README.md b/README.md index c497528e6..cee392130 100644 --- a/README.md +++ b/README.md @@ -12,13 +12,13 @@ The following libraries are available for the various Firebase products. | Service or Product | Gradle Dependency | API Coverage | | ------------------------------------------------------------------------------------ | :-----------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [Authentication](https://firebase.google.com/docs/auth#kotlin-android) | [`dev.gitlive:firebase-auth:1.4.0`](https://search.maven.org/artifact/dev.gitlive/firebase-auth/1.4.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) | -| [Realtime Database](https://firebase.google.com/docs/database#kotlin-android) | [`dev.gitlive:firebase-database:1.4.0`](https://search.maven.org/artifact/dev.gitlive/firebase-database/1.4.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) | -| [Cloud Firestore](https://firebase.google.com/docs/firestore#kotlin-android) | [`dev.gitlive:firebase-firestore:1.4.0`](https://search.maven.org/artifact/dev.gitlive/firebase-firestore/1.4.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) | -| [Cloud Functions](https://firebase.google.com/docs/functions/callable#kotlin-android)| [`dev.gitlive:firebase-functions:1.4.0`](https://search.maven.org/artifact/dev.gitlive/firebase-functions/1.4.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) | -| [Cloud Messaging](https://firebase.google.com/docs/messaging#kotlin-android) | [`dev.gitlive:firebase-messaging:1.4.0`](https://search.maven.org/artifact/dev.gitlive/firebase-messaging/1.4.0/pom) | ![0%](https://img.shields.io/badge/-0%25-lightgrey?style=flat-square) | -| [Cloud Storage](https://firebase.google.com/docs/storage#kotlin-android) | [`dev.gitlive:firebase-storage:1.4.0`](https://search.maven.org/artifact/dev.gitlive/firebase-storage/1.4.0/pom) | ![0%](https://img.shields.io/badge/-0%25-lightgrey?style=flat-square) | -| [Remote Config](https://firebase.google.com/docs/remote-config/get-started?platform=android) | [`dev.gitlive:firebase-config:1.4.0`](https://search.maven.org/artifact/dev.gitlive/firebase-config/1.4.0/pom) | ![20%](https://img.shields.io/badge/-20%25-orange?style=flat-square) | +| [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) | +| [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) | +| [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) | +| [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) | +| [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) | +| [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) | +| [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) | @@ -166,13 +166,13 @@ If you are building a Kotlin multiplatform library which will be consumed from J ```json "dependencies": { - "@gitlive/firebase-auth": "1.4.0", - "@gitlive/firebase-database": "1.4.0", - "@gitlive/firebase-firestore": "1.4.0", - "@gitlive/firebase-functions": "1.4.0", - "@gitlive/firebase-storage": "1.4.0", - "@gitlive/firebase-messaging": "1.4.0", - "@gitlive/firebase-config": "1.4.0" + "@gitlive/firebase-auth": "1.4.1", + "@gitlive/firebase-database": "1.4.1", + "@gitlive/firebase-firestore": "1.4.1", + "@gitlive/firebase-functions": "1.4.1", + "@gitlive/firebase-storage": "1.4.1", + "@gitlive/firebase-messaging": "1.4.1", + "@gitlive/firebase-config": "1.4.1" } ``` diff --git a/firebase-app/package.json b/firebase-app/package.json index 7987b6e69..95feb0407 100644 --- a/firebase-app/package.json +++ b/firebase-app/package.json @@ -23,7 +23,7 @@ }, "homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk", "dependencies": { - "@gitlive/firebase-common": "1.4.0", + "@gitlive/firebase-common": "1.4.1", "firebase": "8.6.7", "kotlin": "1.5.10", "kotlinx-coroutines-core": "1.5.0" diff --git a/firebase-auth/package.json b/firebase-auth/package.json index 6c4545153..c4db648ac 100644 --- a/firebase-auth/package.json +++ b/firebase-auth/package.json @@ -23,7 +23,7 @@ }, "homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk", "dependencies": { - "@gitlive/firebase-app": "1.4.0", + "@gitlive/firebase-app": "1.4.1", "firebase": "8.6.7", "kotlin": "1.5.10", "kotlinx-coroutines-core": "1.5.0" diff --git a/firebase-config/package.json b/firebase-config/package.json index 38dee6650..aed5b331a 100644 --- a/firebase-config/package.json +++ b/firebase-config/package.json @@ -23,7 +23,7 @@ }, "homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk", "dependencies": { - "@gitlive/firebase-app": "1.4.0", + "@gitlive/firebase-app": "1.4.1", "firebase": "8.5.0", "kotlin": "1.4.31", "kotlinx-coroutines-core": "1.4.3" diff --git a/firebase-database/package.json b/firebase-database/package.json index 4a95334ce..87d988d5a 100644 --- a/firebase-database/package.json +++ b/firebase-database/package.json @@ -23,7 +23,7 @@ }, "homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk", "dependencies": { - "@gitlive/firebase-app": "1.4.0", + "@gitlive/firebase-app": "1.4.1", "firebase": "8.6.7", "kotlin": "1.5.10", "kotlinx-coroutines-core": "1.5.0" diff --git a/firebase-firestore/package.json b/firebase-firestore/package.json index 0b6827736..a682e1ffb 100644 --- a/firebase-firestore/package.json +++ b/firebase-firestore/package.json @@ -23,7 +23,7 @@ }, "homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk", "dependencies": { - "@gitlive/firebase-app": "1.4.0", + "@gitlive/firebase-app": "1.4.1", "firebase": "8.6.7", "kotlin": "1.5.10", "kotlinx-coroutines-core": "1.5.0" diff --git a/firebase-functions/package.json b/firebase-functions/package.json index f5ba9eaed..34169acdf 100644 --- a/firebase-functions/package.json +++ b/firebase-functions/package.json @@ -23,7 +23,7 @@ }, "homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk", "dependencies": { - "@gitlive/firebase-app": "1.4.0", + "@gitlive/firebase-app": "1.4.1", "firebase": "8.6.7", "kotlin": "1.5.0", "kotlinx-coroutines-core": "1.5.0" diff --git a/gradle.properties b/gradle.properties index ac7de5578..2e35fe797 100644 --- a/gradle.properties +++ b/gradle.properties @@ -19,10 +19,10 @@ testOptions.unitTests.isIncludeAndroidResources = true kotlin.native.cacheKind.iosX64=none # Versions: -firebase-app.version=1.4.0 -firebase-auth.version=1.4.0 -firebase-common.version=1.4.0 -firebase-database.version=1.4.0 -firebase-firestore.version=1.4.0 -firebase-functions.version=1.4.0 -firebase-config.version=1.4.0 +firebase-app.version=1.4.1 +firebase-auth.version=1.4.1 +firebase-common.version=1.4.1 +firebase-database.version=1.4.1 +firebase-firestore.version=1.4.1 +firebase-functions.version=1.4.1 +firebase-config.version=1.4.1