Skip to content

Commit

Permalink
dependency updates (#221)
Browse files Browse the repository at this point in the history
* dependency updates
- AGP 4.2.1
- coroutines 1.5.0
- spotless 5.12.5

* update artifact versions in documentation samples

Signed-off-by: GitHub Actions <actions@github.com>
  • Loading branch information
RBusarow committed May 15, 2021
1 parent 78ec2cf commit c19414c
Show file tree
Hide file tree
Showing 13 changed files with 38 additions and 38 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -361,8 +361,8 @@ dependencies {
*/

// core coroutines
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.0")

// 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-beta09")
Expand All @@ -379,7 +379,7 @@ dependencies {
*/

// core coroutines-test
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.4.3")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.5.0")
// you only need this if you don't have the -junit4 or -junit5 artifacts
testImplementation("com.rickbusarow.dispatch:dispatch-test:1.0.0-beta09")
// CoroutineTestRule and :dispatch-test
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import org.jetbrains.kotlin.gradle.tasks.*

buildscript {
dependencies {
classpath("com.android.tools.build:gradle:4.2.0")
classpath("com.android.tools.build:gradle:4.2.1")
classpath("org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.16.1")
classpath("org.jetbrains.kotlinx:binary-compatibility-validator:0.5.0")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.0")
Expand All @@ -41,7 +41,7 @@ plugins {
kotlin("jvm")
id("org.jetbrains.dokka") version "1.4.10"
id("com.dorongold.task-tree") version "1.5"
id("com.diffplug.spotless") version "5.12.4"
id("com.diffplug.spotless") version "5.12.5"
base
// can be removed for Kotlin Gradle Plugin 1.5.10
// workaround for https://youtrack.jetbrains.com/issue/KT-46368#focus=Comments-27-4868598.0-0
Expand Down
6 changes: 3 additions & 3 deletions buildSrc/src/main/kotlin/Common.kt
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ fun Project.common() {
configurations.all {
resolutionStrategy {
force(
"org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.3",
"org.jetbrains.kotlinx:kotlinx-coroutines-test:1.4.3",
"org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.3"
"org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0",
"org.jetbrains.kotlinx:kotlinx-coroutines-test:1.5.0",
"org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.0"
)
eachDependency {
when {
Expand Down
6 changes: 3 additions & 3 deletions buildSrc/src/main/kotlin/DocsTasks.kt
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,9 @@ fun File.updateLibraryVersions(): File {
"io.gitlab.arturbosch.detekt:detekt-cli:1.16.0".toDependencyMatcher(),
"io.gitlab.arturbosch.detekt:detekt-formatting:1.16.0".toDependencyMatcher(),
"io.gitlab.arturbosch.detekt:detekt-test:1.16.0".toDependencyMatcher(),
"org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.3".toDependencyMatcher(),
"org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.3".toDependencyMatcher(),
"org.jetbrains.kotlinx:kotlinx-coroutines-test:1.4.3".toDependencyMatcher(),
"org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0".toDependencyMatcher(),
"org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.0".toDependencyMatcher(),
"org.jetbrains.kotlinx:kotlinx-coroutines-test:1.5.0".toDependencyMatcher(),
"com.rickbusarow.dispatch:dispatch-detekt:1.0.0-beta09".toDependencyMatcher(),
"com.rickbusarow.dispatch:dispatch-android-espresso:1.0.0-beta09".toDependencyMatcher(),
"com.rickbusarow.dispatch:dispatch-android-lifecycle:1.0.0-beta09".toDependencyMatcher(),
Expand Down
4 changes: 2 additions & 2 deletions dispatch-android-espresso/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ repositories {
dependencies {

// core
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.0")
implementation("com.rickbusarow.dispatch:dispatch-core:1.0.0-beta09")

androidTestImplementation("com.rickbusarow.dispatch:dispatch-android-espresso:1.0.0-beta09")
Expand Down
4 changes: 2 additions & 2 deletions dispatch-android-lifecycle-extensions/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ repositories {

dependencies {

implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.0")
implementation("com.rickbusarow.dispatch:dispatch-android-lifecycle-extensions:1.0.0-beta09")

implementation("androidx.lifecycle:lifecycle-common:2.3.1")
Expand Down
4 changes: 2 additions & 2 deletions dispatch-android-lifecycle/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ repositories {

dependencies {

implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.0")
implementation("com.rickbusarow.dispatch:dispatch-android-lifecycle:1.0.0-beta09")
implementation("androidx.lifecycle:lifecycle-common:2.3.1")
}
Expand Down
4 changes: 2 additions & 2 deletions dispatch-android-viewmodel/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@ repositories {

dependencies {

implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.0")
implementation("com.rickbusarow.dispatch:dispatch-android-viewmodel:1.0.0-beta09")
}
```
Expand Down
4 changes: 2 additions & 2 deletions dispatch-core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,8 @@ repositories {

dependencies {

implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.0")
implementation("com.rickbusarow.dispatch:dispatch-core:1.0.0-beta09")
}
```
Expand Down
12 changes: 6 additions & 6 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.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.0")
implementation("com.rickbusarow.dispatch:dispatch-core:1.0.0-beta09")

// the junit4 artifact also provides the dispatch-test artifact
testImplementation("com.rickbusarow.dispatch:dispatch-test-junit4:1.0.0-beta09")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.4.3")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.5.0")
}
```

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

// core
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.0")
implementation("com.rickbusarow.dispatch:dispatch-core:1.0.0-beta09")

// the junit4 and junit5 artifacts also provides the dispatch-test artifact
testImplementation("com.rickbusarow.dispatch:dispatch-test-junit4:1.0.0-beta09")
testImplementation("com.rickbusarow.dispatch:dispatch-test-junit5:1.0.0-beta09")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.4.3")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.5.0")
}
```

Expand Down
12 changes: 6 additions & 6 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.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.0")
implementation("com.rickbusarow.dispatch:dispatch-core:1.0.0-beta09")

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

// core
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.0")
implementation("com.rickbusarow.dispatch:dispatch-core:1.0.0-beta09")

// the junit4 and junit5 artifacts also provides the dispatch-test artifact
testImplementation("com.rickbusarow.dispatch:dispatch-test-junit4:1.0.0-beta09")
testImplementation("com.rickbusarow.dispatch:dispatch-test-junit5:1.0.0-beta09")
testImplementation("org.junit.jupiter:junit-jupiter:5.7.1")
testImplementation("org.junit.vintage:junit-vintage-engine:5.7.1")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.4.3")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.5.0")
}
```

Expand Down
6 changes: 3 additions & 3 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.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.0")
implementation("com.rickbusarow.dispatch:dispatch-core:1.0.0-beta09")

testImplementation("com.rickbusarow.dispatch:dispatch-test:1.0.0-beta09")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.4.3")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.5.0")
}
```

Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[versions]
androidTools = "4.2.0"
androidTools = "4.2.1"
androidxTest = "1.3.0"
androidxTestEspresso = "3.3.0"
anvil = "2.2.1"
benManes = "0.36.0"
changeTracker = "0.7.3"
compileSdk = "30"
coroutines = "1.4.3"
coroutines = "1.5.0"
dependencyAnalysis = "0.63.0"
dispatch = "1.0.0-beta09"
detekt = "1.16.0"
Expand Down

0 comments on commit c19414c

Please sign in to comment.