Merge pull request #16 from InsanusMokrassar/0.3.3

0.3.3
This commit is contained in:
InsanusMokrassar 2020-11-12 22:20:11 +06:00 committed by GitHub
commit 062848f2e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 2 deletions

View File

@ -1,5 +1,10 @@
# Changelog
## 0.3.3
* `Coroutines`:
* New extension `Flow<T>#plus`
## 0.3.2
* `Versions`:

View File

@ -0,0 +1,8 @@
@file:Suppress("NOTHING_TO_INLINE")
package dev.inmo.micro_utils.coroutines
import kotlinx.coroutines.flow.Flow
import kotlinx.coroutines.flow.merge
inline operator fun <T> Flow<T>.plus(other: Flow<T>) = merge(this, other)

View File

@ -41,5 +41,5 @@ dokka_version=1.4.0
# Project data
group=dev.inmo
version=0.3.2
android_code_version=2
version=0.3.3
android_code_version=3