Skip to content

Commit 1b7b8c1

Browse files
committed
bump minor version numbers
1 parent 878e04e commit 1b7b8c1

File tree

11 files changed

+21
-22
lines changed

11 files changed

+21
-22
lines changed

firebase-app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Copyright (c) 2020 GitLive Ltd. Use of this source code is governed by the Apache 2.0 license.
33
*/
4-
version = "0.1.0"
4+
version = "0.2.0"
55

66

77
plugins {

firebase-app/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@gitlive/firebase-app",
3-
"version": "0.1.0",
4-
"description": "Wrapper around firebase for usage in Kotlin Multiplatform projects",
3+
"version": "0.2.0",
4+
"description": "Wrapper around firebase for usage in Kotlin Multiplatform projects",
55
"main": "firebase-app.js",
66
"scripts": {
77
"test": "echo \"Error: no test specified\" && exit 1"
@@ -23,7 +23,7 @@
2323
},
2424
"homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk",
2525
"dependencies": {
26-
"@gitlive/firebase-common": "0.1.0",
26+
"@gitlive/firebase-common": "0.2.0",
2727
"firebase": "7.14.0",
2828
"kotlin": "1.3.72",
2929
"kotlinx-coroutines-core": "1.3.5"

firebase-auth/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@gitlive/firebase-auth",
3-
"version": "0.1.0",
4-
"description": "Wrapper around firebase for usage in Kotlin Multiplatform projects",
3+
"version": "0.2.0",
4+
"description": "Wrapper around firebase for usage in Kotlin Multiplatform projects",
55
"main": "firebase-auth.js",
66
"scripts": {
77
"test": "echo \"Error: no test specified\" && exit 1"
@@ -23,7 +23,7 @@
2323
},
2424
"homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk",
2525
"dependencies": {
26-
"@gitlive/firebase-app": "0.1.0",
26+
"@gitlive/firebase-app": "0.2.0",
2727
"firebase": "7.14.0",
2828
"kotlin": "1.3.72",
2929
"kotlinx-coroutines-core": "1.3.5"

firebase-auth/src/androidMain/kotlin/dev/gitlive/firebase/auth/auth.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ actual class FirebaseAuth internal constructor(val android: com.google.firebase.
2323

2424
actual suspend fun signInWithEmailAndPassword(email: String, password: String) =
2525
AuthResult(android.signInWithEmailAndPassword(email, password).await())
26-
//AuthResult(android.signInWithEmailAndPassword(email, password).await())
2726

2827
actual suspend fun signInWithCustomToken(token: String) =
2928
AuthResult(android.signInWithCustomToken(token).await())

firebase-common/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Copyright (c) 2020 GitLive Ltd. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

5-
version = "0.1.0"
5+
version = "0.2.0"
66

77
plugins {
88
id("com.android.library")

firebase-common/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@gitlive/firebase-common",
3-
"version": "0.1.0",
4-
"description": "Wrapper around firebase for usage in Kotlin Multiplatform projects",
3+
"version": "0.2.0",
4+
"description": "Wrapper around firebase for usage in Kotlin Multiplatform projects",
55
"main": "firebase-common.js",
66
"scripts": {
77
"test": "echo \"Error: no test specified\" && exit 1"

firebase-database/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = "0.1.0"
1+
version = "0.2.0"
22

33
plugins {
44
id("com.android.library")

firebase-database/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@gitlive/firebase-database",
3-
"version": "0.1.0",
4-
"description": "Wrapper around firebase for usage in Kotlin Multiplatform projects",
3+
"version": "0.2.0",
4+
"description": "Wrapper around firebase for usage in Kotlin Multiplatform projects",
55
"main": "firebase-database.js",
66
"scripts": {
77
"test": "echo \"Error: no test specified\" && exit 1"
@@ -23,7 +23,7 @@
2323
},
2424
"homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk",
2525
"dependencies": {
26-
"@gitlive/firebase-app": "0.1.0",
26+
"@gitlive/firebase-app": "0.2.0",
2727
"firebase": "7.14.0",
2828
"kotlin": "1.3.72",
2929
"kotlinx-coroutines-core": "1.3.5"

firebase-firestore/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@gitlive/firebase-firestore",
3-
"version": "0.1.0",
4-
"description": "Wrapper around firebase for usage in Kotlin Multiplatform projects",
3+
"version": "0.2.0",
4+
"description": "Wrapper around firebase for usage in Kotlin Multiplatform projects",
55
"main": "firebase-firestore.js",
66
"scripts": {
77
"test": "echo \"Error: no test specified\" && exit 1"
@@ -23,7 +23,7 @@
2323
},
2424
"homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk",
2525
"dependencies": {
26-
"@gitlive/firebase-app": "0.1.0",
26+
"@gitlive/firebase-app": "0.2.0",
2727
"firebase": "7.14.0",
2828
"kotlin": "1.3.72",
2929
"kotlinx-coroutines-core": "1.3.5"

firebase-functions/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = "0.1.0"
1+
version = "0.2.0"
22

33
plugins {
44
id("com.android.library")

0 commit comments

Comments
 (0)