Skip to content

Commit

Permalink
1.0.0-beta06 (#189)
Browse files Browse the repository at this point in the history
* update coroutines to 1.4.1

* update version to 1.0.0-beta06
  • Loading branch information
RBusarow committed Nov 5, 2020
1 parent c3ed048 commit cc4311a
Show file tree
Hide file tree
Showing 24 changed files with 129 additions and 121 deletions.
12 changes: 8 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
# Change log for Dispatch

## Version 1.0.0-beta06

* Update to coroutines to [1.4.1](https://github.com/Kotlin/kotlinx.coroutines/releases/tag/1.4.1) in order to fix [an issue with SharedFlow](https://github.com/Kotlin/kotlinx.coroutines/pull/2359)([#189](https://github.com/RBusarow/Dispatch/issues/189))

## Version 1.0.0-beta05

### Api changes
* [ViewLifecycleCoroutineScope] is a special [DispatchLifecycleScope] meant for binding a scope to a [Fragment]'s **view** lifecycle. ([#179](https://github.com/RBusarow/Dispatch/issues/179))
* [ViewLifecycleCoroutineScope] is a special [DispatchLifecycleScope] meant for binding a scope to a [Fragment]'s **view** lifecycle. ([#179](https://github.com/RBusarow/Dispatch/issues/179))
* Make [testProvided] receive [TestProvidedCoroutineScope] ([#157](https://github.com/RBusarow/Dispatch/issues/157))
* [LifecycleCoroutineScope] has been renamed to [DispatchLifecycleScope], along with its extension function. The old names are still functional with a deprecated typealias. They will be removed in the future. ([#186](https://github.com/RBusarow/Dispatch/pull/186))
* [LifecycleCoroutineScope] has been renamed to [DispatchLifecycleScope], along with its extension function. The old names are still functional with a deprecated typealias. They will be removed in the future. ([#186](https://github.com/RBusarow/Dispatch/pull/186))
* [CoroutineViewModel] has been renamed to [DispatchViewModel]. The old names are still functional with a deprecated typealias. They will be removed in the future. ([#186](https://github.com/RBusarow/Dispatch/pull/186))

### Bug fixes
* Use [currentCoroutineContext] to resolve the inner [CoroutineContext] in `flowOn___` functions. ([#181](https://github.com/RBusarow/Dispatch/issues/181))
* Use [currentCoroutineContext] to resolve the inner [CoroutineContext] in `flowOn___` functions. ([#181](https://github.com/RBusarow/Dispatch/issues/181))

### Housekeeping
* Set the project JDK target to 8. This only affects the build environment since all previous builds were done on a JDK 8 machine. ([#187](https://github.com/RBusarow/Dispatch/pull/187))
* Set the project JDK target to 8. This only affects the build environment since all previous builds were done on a JDK 8 machine. ([#187](https://github.com/RBusarow/Dispatch/pull/187))
* Coroutines has been updated to 1.4.0 ([#183](https://github.com/RBusarow/Dispatch/pull/183))
* Detekt has been updated to 1.4.2 ([#184](https://github.com/RBusarow/Dispatch/pull/184))
* JUnit6 has been updated to 5.7.0 ([#178](https://github.com/RBusarow/Dispatch/pull/178))
Expand Down
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -361,35 +361,35 @@ dependencies {
*/

// core coroutines
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.1")

// everything provides :core via "api", so you only need this if you have no other "implementation" dispatch artifacts
implementation("com.rickbusarow.dispatch:dispatch-core:1.0.0-beta05")
implementation("com.rickbusarow.dispatch:dispatch-core:1.0.0-beta06")
// LifecycleCoroutineScope for Android Fragments, Activities, etc.
implementation("com.rickbusarow.dispatch:dispatch-android-lifecycle:1.0.0-beta05")
implementation("com.rickbusarow.dispatch:dispatch-android-lifecycle:1.0.0-beta06")
// lifecycleScope extension function with a settable factory. Use this if you don't DI your CoroutineScopes
// This provides :dispatch-android-lifecycle via "api", so you don't need to declare both
implementation("com.rickbusarow.dispatch:dispatch-android-lifecycle-extensions:1.0.0-beta05")
implementation("com.rickbusarow.dispatch:dispatch-android-lifecycle-extensions:1.0.0-beta06")
// ViewModelScope for Android ViewModels
implementation("com.rickbusarow.dispatch:dispatch-android-viewmodel:1.0.0-beta05")
implementation("com.rickbusarow.dispatch:dispatch-android-viewmodel:1.0.0-beta06")

/*
jvm testing
*/

// core coroutines-test
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.4.0")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.4.1")
// you only need this if you don't have the -junit4 or -junit5 artifacts
testImplementation("com.rickbusarow.dispatch:dispatch-test:1.0.0-beta05")
testImplementation("com.rickbusarow.dispatch:dispatch-test:1.0.0-beta06")
// CoroutineTestRule and :dispatch-test
// This provides :dispatch-test via "api", so you don't need to declare both
// This can be used at the same time as :dispatch-test-junit5
testImplementation("com.rickbusarow.dispatch:dispatch-test-junit4:1.0.0-beta05")
testImplementation("com.rickbusarow.dispatch:dispatch-test-junit4:1.0.0-beta06")
// CoroutineTest, CoroutineTestExtension, and :dispatch-test
// This provides :dispatch-test via "api", so you don't need to declare both
// This can be used at the same time as :dispatch-test-junit4
testImplementation("com.rickbusarow.dispatch:dispatch-test-junit5:1.0.0-beta05")
testImplementation("com.rickbusarow.dispatch:dispatch-test-junit5:1.0.0-beta06")
/*
Android testing
*/
Expand All @@ -398,7 +398,7 @@ dependencies {
androidTestImplementation("androidx.test:runner:1.3.0")
androidTestImplementation("androidx.test.espresso:espresso-core:3.3.0")
// IdlingDispatcher, IdlingDispatcherProvider, and IdlingCoroutineScope
androidTestImplementation("com.rickbusarow.dispatch:dispatch-android-espresso:1.0.0-beta05")
androidTestImplementation("com.rickbusarow.dispatch:dispatch-android-espresso:1.0.0-beta06")
}
```

Expand Down
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ object Versions {
const val mavenPublish = "0.13.0"

const val taskTree = "1.5"
const val versionName = "1.0.0-beta05"
const val versionName = "1.0.0-beta06"
}

object BuildPlugins {
Expand Down Expand Up @@ -195,7 +195,7 @@ object Libs {
object Kotlinx {

object Coroutines {
private const val version = "1.4.0"
private const val version = "1.4.1"
const val core = "org.jetbrains.kotlinx:kotlinx-coroutines-core:$version"
const val coreJvm = "org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:$version"
const val android = "org.jetbrains.kotlinx:kotlinx-coroutines-android:$version"
Expand Down
8 changes: 4 additions & 4 deletions dispatch-android-espresso/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,11 @@ repositories {
dependencies {

// core
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.0")
implementation("com.rickbusarow.dispatch:dispatch-core:1.0.0-beta05")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.1")
implementation("com.rickbusarow.dispatch:dispatch-core:1.0.0-beta06")

androidTestImplementation("com.rickbusarow.dispatch:dispatch-android-espresso:1.0.0-beta05")
androidTestImplementation("com.rickbusarow.dispatch:dispatch-android-espresso:1.0.0-beta06")

// android
androidTestImplementation("androidx.test:runner:1.3.0")
Expand Down
6 changes: 3 additions & 3 deletions dispatch-android-lifecycle-extensions/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,9 @@ repositories {

dependencies {

implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.0")
implementation("com.rickbusarow.dispatch:dispatch-android-lifecycle-extensions:1.0.0-beta05")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.1")
implementation("com.rickbusarow.dispatch:dispatch-android-lifecycle-extensions:1.0.0-beta06")

implementation("androidx.lifecycle:lifecycle-common:2.2.0")
}
Expand Down
6 changes: 3 additions & 3 deletions dispatch-android-lifecycle/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ repositories {

dependencies {

implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.0")
implementation("com.rickbusarow.dispatch:dispatch-android-lifecycle:1.0.0-beta05")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.1")
implementation("com.rickbusarow.dispatch:dispatch-android-lifecycle:1.0.0-beta06")
implementation("androidx.lifecycle:lifecycle-common:2.2.0")
}
```
Expand Down
6 changes: 3 additions & 3 deletions dispatch-android-viewmodel/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,9 @@ repositories {

dependencies {

implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.0")
implementation("com.rickbusarow.dispatch:dispatch-android-viewmodel:1.0.0-beta05")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.1")
implementation("com.rickbusarow.dispatch:dispatch-android-viewmodel:1.0.0-beta06")
}
```

Expand Down
6 changes: 3 additions & 3 deletions dispatch-core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,9 +201,9 @@ repositories {

dependencies {

implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.0")
implementation("com.rickbusarow.dispatch:dispatch-core:1.0.0-beta05")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.1")
implementation("com.rickbusarow.dispatch:dispatch-core:1.0.0-beta06")
}
```

Expand Down
2 changes: 1 addition & 1 deletion dispatch-detekt/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ allprojects {
dependencies {
detekt("io.gitlab.arturbosch.detekt:detekt-cli:1.14.2")

detektPlugins("com.rickbusarow.dispatch:dispatch-detekt:1.0.0-beta05")
detektPlugins("com.rickbusarow.dispatch:dispatch-detekt:1.0.0-beta06")
}
}
```
Expand Down
22 changes: 11 additions & 11 deletions dispatch-test-junit4/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,13 @@ repositories {
dependencies {

// core
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.0")
implementation("com.rickbusarow.dispatch:dispatch-core:1.0.0-beta05")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.1")
implementation("com.rickbusarow.dispatch:dispatch-core:1.0.0-beta06")

// the junit4 artifact also provides the dispatch-test artifact
testImplementation("com.rickbusarow.dispatch:dispatch-test-junit4:1.0.0-beta05")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.4.0")
testImplementation("com.rickbusarow.dispatch:dispatch-test-junit4:1.0.0-beta06")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.4.1")
}
```

Expand All @@ -95,14 +95,14 @@ repositories {
dependencies {

// core
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.0")
implementation("com.rickbusarow.dispatch:dispatch-core:1.0.0-beta05")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.1")
implementation("com.rickbusarow.dispatch:dispatch-core:1.0.0-beta06")

// the junit4 and junit5 artifacts also provides the dispatch-test artifact
testImplementation("com.rickbusarow.dispatch:dispatch-test-junit4:1.0.0-beta05")
testImplementation("com.rickbusarow.dispatch:dispatch-test-junit5:1.0.0-beta05")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.4.0")
testImplementation("com.rickbusarow.dispatch:dispatch-test-junit4:1.0.0-beta06")
testImplementation("com.rickbusarow.dispatch:dispatch-test-junit5:1.0.0-beta06")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.4.1")
}
```

Expand Down
22 changes: 11 additions & 11 deletions dispatch-test-junit5/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,13 @@ repositories {
dependencies {

// core
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.0")
implementation("com.rickbusarow.dispatch:dispatch-core:1.0.0-beta05")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.1")
implementation("com.rickbusarow.dispatch:dispatch-core:1.0.0-beta06")

// the junit5 artifact also provides the dispatch-test artifact
testImplementation("com.rickbusarow.dispatch:dispatch-test-junit5:1.0.0-beta05")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.4.0")
testImplementation("com.rickbusarow.dispatch:dispatch-test-junit5:1.0.0-beta06")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.4.1")
testImplementation("org.junit.jupiter:junit-jupiter:5.7.0")
}
```
Expand All @@ -126,16 +126,16 @@ repositories {
dependencies {

// core
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.0")
implementation("com.rickbusarow.dispatch:dispatch-core:1.0.0-beta05")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.1")
implementation("com.rickbusarow.dispatch:dispatch-core:1.0.0-beta06")

// the junit4 and junit5 artifacts also provides the dispatch-test artifact
testImplementation("com.rickbusarow.dispatch:dispatch-test-junit4:1.0.0-beta05")
testImplementation("com.rickbusarow.dispatch:dispatch-test-junit5:1.0.0-beta05")
testImplementation("com.rickbusarow.dispatch:dispatch-test-junit4:1.0.0-beta06")
testImplementation("com.rickbusarow.dispatch:dispatch-test-junit5:1.0.0-beta06")
testImplementation("org.junit.jupiter:junit-jupiter:5.7.0")
testImplementation("org.junit.vintage:junit-vintage-engine:5.7.0")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.4.0")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.4.1")
}
```

Expand Down
10 changes: 5 additions & 5 deletions dispatch-test/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,12 +120,12 @@ repositories {
dependencies {

// core
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.0")
implementation("com.rickbusarow.dispatch:dispatch-core:1.0.0-beta05")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.1")
implementation("com.rickbusarow.dispatch:dispatch-core:1.0.0-beta06")

testImplementation("com.rickbusarow.dispatch:dispatch-test:1.0.0-beta05")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.4.0")
testImplementation("com.rickbusarow.dispatch:dispatch-test:1.0.0-beta06")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.4.1")
}
```

Expand Down
12 changes: 8 additions & 4 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
# Change log for Dispatch

## Version 1.0.0-beta06

* Update to coroutines to [1.4.1](https://github.com/Kotlin/kotlinx.coroutines/releases/tag/1.4.1) in order to fix [an issue with SharedFlow](https://github.com/Kotlin/kotlinx.coroutines/pull/2359)([#189](https://github.com/RBusarow/Dispatch/issues/189))

## Version 1.0.0-beta05

### Api changes
* [ViewLifecycleCoroutineScope] is a special [DispatchLifecycleScope] meant for binding a scope to a [Fragment]'s **view** lifecycle. ([#179](https://github.com/RBusarow/Dispatch/issues/179))
* [ViewLifecycleCoroutineScope] is a special [DispatchLifecycleScope] meant for binding a scope to a [Fragment]'s **view** lifecycle. ([#179](https://github.com/RBusarow/Dispatch/issues/179))
* Make [testProvided] receive [TestProvidedCoroutineScope] ([#157](https://github.com/RBusarow/Dispatch/issues/157))
* [LifecycleCoroutineScope] has been renamed to [DispatchLifecycleScope], along with its extension function. The old names are still functional with a deprecated typealias. They will be removed in the future. ([#186](https://github.com/RBusarow/Dispatch/pull/186))
* [LifecycleCoroutineScope] has been renamed to [DispatchLifecycleScope], along with its extension function. The old names are still functional with a deprecated typealias. They will be removed in the future. ([#186](https://github.com/RBusarow/Dispatch/pull/186))
* [CoroutineViewModel] has been renamed to [DispatchViewModel]. The old names are still functional with a deprecated typealias. They will be removed in the future. ([#186](https://github.com/RBusarow/Dispatch/pull/186))

### Bug fixes
* Use [currentCoroutineContext] to resolve the inner [CoroutineContext] in `flowOn___` functions. ([#181](https://github.com/RBusarow/Dispatch/issues/181))
* Use [currentCoroutineContext] to resolve the inner [CoroutineContext] in `flowOn___` functions. ([#181](https://github.com/RBusarow/Dispatch/issues/181))

### Housekeeping
* Set the project JDK target to 8. This only affects the build environment since all previous builds were done on a JDK 8 machine. ([#187](https://github.com/RBusarow/Dispatch/pull/187))
* Set the project JDK target to 8. This only affects the build environment since all previous builds were done on a JDK 8 machine. ([#187](https://github.com/RBusarow/Dispatch/pull/187))
* Coroutines has been updated to 1.4.0 ([#183](https://github.com/RBusarow/Dispatch/pull/183))
* Detekt has been updated to 1.4.2 ([#184](https://github.com/RBusarow/Dispatch/pull/184))
* JUnit6 has been updated to 5.7.0 ([#178](https://github.com/RBusarow/Dispatch/pull/178))
Expand Down
8 changes: 4 additions & 4 deletions docs/dispatch-android-espresso.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,11 @@ repositories {
dependencies {

// core
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.0")
implementation("com.rickbusarow.dispatch:dispatch-core:1.0.0-beta05")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.1")
implementation("com.rickbusarow.dispatch:dispatch-core:1.0.0-beta06")

androidTestImplementation("com.rickbusarow.dispatch:dispatch-android-espresso:1.0.0-beta05")
androidTestImplementation("com.rickbusarow.dispatch:dispatch-android-espresso:1.0.0-beta06")

// android
androidTestImplementation("androidx.test:runner:1.3.0")
Expand Down
6 changes: 3 additions & 3 deletions docs/dispatch-android-lifecycle-extensions.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,9 @@ repositories {

dependencies {

implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.0")
implementation("com.rickbusarow.dispatch:dispatch-android-lifecycle-extensions:1.0.0-beta05")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.1")
implementation("com.rickbusarow.dispatch:dispatch-android-lifecycle-extensions:1.0.0-beta06")

implementation("androidx.lifecycle:lifecycle-common:2.2.0")
}
Expand Down
6 changes: 3 additions & 3 deletions docs/dispatch-android-lifecycle.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ repositories {

dependencies {

implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.0")
implementation("com.rickbusarow.dispatch:dispatch-android-lifecycle:1.0.0-beta05")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.1")
implementation("com.rickbusarow.dispatch:dispatch-android-lifecycle:1.0.0-beta06")
implementation("androidx.lifecycle:lifecycle-common:2.2.0")
}
```
Expand Down
6 changes: 3 additions & 3 deletions docs/dispatch-android-viewmodel.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,9 @@ repositories {

dependencies {

implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.0")
implementation("com.rickbusarow.dispatch:dispatch-android-viewmodel:1.0.0-beta05")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.1")
implementation("com.rickbusarow.dispatch:dispatch-android-viewmodel:1.0.0-beta06")
}
```

Expand Down
6 changes: 3 additions & 3 deletions docs/dispatch-core.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,9 +201,9 @@ repositories {

dependencies {

implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.0")
implementation("com.rickbusarow.dispatch:dispatch-core:1.0.0-beta05")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.1")
implementation("com.rickbusarow.dispatch:dispatch-core:1.0.0-beta06")
}
```

Expand Down
Loading

0 comments on commit cc4311a

Please sign in to comment.