Skip to content

Commit

Permalink
1.4.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Reedyuk committed Jul 6, 2021
1 parent a549f6d commit 8e2232e
Show file tree
Hide file tree
Showing 13 changed files with 33 additions and 27 deletions.
28 changes: 14 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.3.1`](https://search.maven.org/artifact/dev.gitlive/firebase-auth/1.3.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.3.1`](https://search.maven.org/artifact/dev.gitlive/firebase-database/1.3.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.3.1`](https://search.maven.org/artifact/dev.gitlive/firebase-firestore/1.3.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.3.1`](https://search.maven.org/artifact/dev.gitlive/firebase-functions/1.3.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.3.1`](https://search.maven.org/artifact/dev.gitlive/firebase-messaging/1.3.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.3.1`](https://search.maven.org/artifact/dev.gitlive/firebase-storage/1.3.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.3.1`](https://search.maven.org/artifact/dev.gitlive/firebase-config/1.3.1/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.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) |



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

```json
"dependencies": {
"@gitlive/firebase-auth": "1.3.1",
"@gitlive/firebase-database": "1.3.1",
"@gitlive/firebase-firestore": "1.3.1",
"@gitlive/firebase-functions": "1.3.1",
"@gitlive/firebase-storage": "1.3.1",
"@gitlive/firebase-messaging": "1.3.1",
"@gitlive/firebase-config": "1.3.1"
"@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"
}
```

Expand Down
2 changes: 1 addition & 1 deletion firebase-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
"homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk",
"dependencies": {
"@gitlive/firebase-common": "1.3.1",
"@gitlive/firebase-common": "1.4.0",
"firebase": "8.6.7",
"kotlin": "1.5.10",
"kotlinx-coroutines-core": "1.5.0"
Expand Down
1 change: 1 addition & 0 deletions firebase-app/src/iosMain/c_interop/Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseAnalyticsBinary.json" "6.30.0"
2 changes: 1 addition & 1 deletion firebase-auth/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
"homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk",
"dependencies": {
"@gitlive/firebase-app": "1.3.1",
"@gitlive/firebase-app": "1.4.0",
"firebase": "8.6.7",
"kotlin": "1.5.10",
"kotlinx-coroutines-core": "1.5.0"
Expand Down
1 change: 1 addition & 0 deletions firebase-auth/src/iosMain/c_interop/Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseAuthBinary.json" "6.30.0"
2 changes: 1 addition & 1 deletion firebase-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
"homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk",
"dependencies": {
"@gitlive/firebase-app": "1.3.1",
"@gitlive/firebase-app": "1.4.0",
"firebase": "8.5.0",
"kotlin": "1.4.31",
"kotlinx-coroutines-core": "1.4.3"
Expand Down
2 changes: 1 addition & 1 deletion firebase-database/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
"homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk",
"dependencies": {
"@gitlive/firebase-app": "1.3.1",
"@gitlive/firebase-app": "1.4.0",
"firebase": "8.6.7",
"kotlin": "1.5.10",
"kotlinx-coroutines-core": "1.5.0"
Expand Down
1 change: 1 addition & 0 deletions firebase-database/src/iosMain/c_interop/Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseDatabaseBinary.json" "6.30.0"
2 changes: 1 addition & 1 deletion firebase-firestore/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
"homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk",
"dependencies": {
"@gitlive/firebase-app": "1.3.1",
"@gitlive/firebase-app": "1.4.0",
"firebase": "8.6.7",
"kotlin": "1.5.10",
"kotlinx-coroutines-core": "1.5.0"
Expand Down
1 change: 1 addition & 0 deletions firebase-firestore/src/iosMain/c_interop/Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseFirestoreBinary.json" "6.30.0"
2 changes: 1 addition & 1 deletion firebase-functions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
"homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk",
"dependencies": {
"@gitlive/firebase-app": "1.3.1",
"@gitlive/firebase-app": "1.4.0",
"firebase": "8.6.7",
"kotlin": "1.5.0",
"kotlinx-coroutines-core": "1.5.0"
Expand Down
1 change: 1 addition & 0 deletions firebase-functions/src/iosMain/c_interop/Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseFunctionsBinary.json" "6.30.0"
15 changes: 8 additions & 7 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,13 @@ kotlin.setJvmTargetFromAndroidCompileOptions=true
org.gradle.jvmargs=-Xmx2048m
org.gradle.parallel=true
testOptions.unitTests.isIncludeAndroidResources = true
kotlin.native.cacheKind.iosX64=none

# Versions:
firebase-app.version=1.3.1
firebase-auth.version=1.3.1
firebase-common.version=1.3.1
firebase-database.version=1.3.1
firebase-firestore.version=1.3.1
firebase-functions.version=1.3.1
firebase-config.version=1.3.1
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

0 comments on commit 8e2232e

Please sign in to comment.