Bump Robolectric, Gradle and kotlinx.coroutines (#1408)
This commit is contained in:
parent
859dc008bc
commit
f25dabc5e7
6 changed files with 9 additions and 9 deletions
2
.github/workflows/draft_new_release.yml
vendored
2
.github/workflows/draft_new_release.yml
vendored
|
@ -75,7 +75,7 @@ jobs:
|
|||
git commit -m "build: bump version"
|
||||
|
||||
- name: Create Pull Request
|
||||
uses: peter-evans/create-pull-request@052fc72b4198ba9fbc81b818c6e1859f747d49a8
|
||||
uses: peter-evans/create-pull-request@01f7dd1d28f5131231ba3ede0f1c8cb413584a1d
|
||||
with:
|
||||
author: GitHub Actions <noreply@github.com>
|
||||
body: This is an automated pull request to bump the changelog for the ${{ github.event.milestone.title }} release.
|
||||
|
|
2
.github/workflows/sync_crowdin.yml
vendored
2
.github/workflows/sync_crowdin.yml
vendored
|
@ -21,7 +21,7 @@ jobs:
|
|||
run: if [[ $(git diff --stat) != '' ]]; then echo "UPDATED=true" >> $GITHUB_ENV; fi
|
||||
|
||||
- name: Create Pull Request
|
||||
uses: peter-evans/create-pull-request@052fc72b4198ba9fbc81b818c6e1859f747d49a8
|
||||
uses: peter-evans/create-pull-request@01f7dd1d28f5131231ba3ede0f1c8cb413584a1d
|
||||
if: env.UPDATED == 'true'
|
||||
with:
|
||||
assignees: msfjarvis
|
||||
|
|
|
@ -17,7 +17,7 @@ jobs:
|
|||
run: if [[ $(git diff --binary --stat) != '' ]]; then echo "UPDATED=true" >> $GITHUB_ENV; fi
|
||||
|
||||
- name: Create Pull Request
|
||||
uses: peter-evans/create-pull-request@052fc72b4198ba9fbc81b818c6e1859f747d49a8
|
||||
uses: peter-evans/create-pull-request@01f7dd1d28f5131231ba3ede0f1c8cb413584a1d
|
||||
if: env.UPDATED == 'true'
|
||||
with:
|
||||
assignees: msfjarvis
|
||||
|
|
|
@ -21,9 +21,9 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|||
*/
|
||||
internal fun Project.configureForRootProject() {
|
||||
tasks.withType<Wrapper> {
|
||||
gradleVersion = "7.0.1"
|
||||
gradleVersion = "7.0.2"
|
||||
distributionType = Wrapper.DistributionType.ALL
|
||||
distributionSha256Sum = "ca42877db3519b667cd531c414be517b294b0467059d401e7133f0e55b9bf265"
|
||||
distributionSha256Sum = "13bf8d3cf8eeeb5770d19741a59bde9bd966dd78d17f1bbad787a05ef19d1c2d"
|
||||
}
|
||||
configureBinaryCompatibilityValidator()
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Centralized versions for dependencies that share versions
|
||||
[versions]
|
||||
androidx_test = "1.4.0-alpha06"
|
||||
coroutines = "1.5.0-RC"
|
||||
coroutines = "1.5.0"
|
||||
hilt = "2.35.1"
|
||||
kotlin = "1.5.0"
|
||||
lifecycle = "2.4.0-alpha01"
|
||||
|
@ -75,7 +75,7 @@ thirdparty-nonfree-googlePlayAuthApiPhone = "com.google.android.gms:play-service
|
|||
# Testing dependencies
|
||||
testing-junit = "junit:junit:4.13.2"
|
||||
testing-kotlintest-junit = { module = "org.jetbrains.kotlin:kotlin-test-junit", version.ref = "kotlin" }
|
||||
testing-robolectric = "org.robolectric:robolectric:4.5.1"
|
||||
testing-robolectric = "org.robolectric:robolectric:4.6-alpha-1"
|
||||
androidx-testing-rules = { module = "androidx.test:rules", version.ref="androidx_test" }
|
||||
androidx-testing-runner = { module = "androidx.test:runner", version.ref="androidx_test" }
|
||||
kotlin-coroutines-test = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-test", version.ref = "coroutines" }
|
||||
|
|
4
gradle/wrapper/gradle-wrapper.properties
vendored
4
gradle/wrapper/gradle-wrapper.properties
vendored
|
@ -1,6 +1,6 @@
|
|||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionSha256Sum=ca42877db3519b667cd531c414be517b294b0467059d401e7133f0e55b9bf265
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.1-all.zip
|
||||
distributionSha256Sum=13bf8d3cf8eeeb5770d19741a59bde9bd966dd78d17f1bbad787a05ef19d1c2d
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-all.zip
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
|
|
Loading…
Reference in a new issue