Skip to content

Commit

Permalink
Update Dagger's XProcessing jars.
Browse files Browse the repository at this point in the history
This CL also updates Dagger's Kotlin version to 1.7.0, which is needed for using the latest XProcessing jars.

RELNOTES=N/A
PiperOrigin-RevId: 460744021
  • Loading branch information
bcorso authored and Dagger Team committed Jul 13, 2022
1 parent 1763aa3 commit db6a656
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions .github/actions/artifact-android-emulator-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ runs:
with:
name: local-snapshot
path: ~/.m2/repository/com/google/dagger
- name: 'Install Java ${{ env.USE_JAVA_VERSION }}'
uses: actions/setup-java@v2
with:
distribution: '${{ env.USE_JAVA_DISTRIBUTION }}'
java-version: '${{ env.USE_JAVA_VERSION }}'
- name: 'Gradle Android emulator tests (API ${{ inputs.api-level }})'
uses: reactivecircus/android-emulator-runner@v2
with:
Expand Down
6 changes: 3 additions & 3 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -141,10 +141,10 @@ archive_repository(

load("@io_bazel_rules_kotlin//kotlin:repositories.bzl", "kotlin_repositories", "kotlinc_version")

KOTLIN_VERSION = "1.6.21"
KOTLIN_VERSION = "1.7.0"

# Get from https://github.com/JetBrains/kotlin/releases/
KOTLINC_RELEASE_SHA = "632166fed89f3f430482f5aa07f2e20b923b72ef688c8f5a7df3aa1502c6d8ba"
KOTLINC_RELEASE_SHA = "f5216644ad81571e5db62ec2322fe07468927bda40f51147ed626a2884b55f9a"

kotlin_repositories(
compiler_release = kotlinc_version(
Expand Down Expand Up @@ -193,7 +193,7 @@ CHECKER_FRAMEWORK_VERSION = "2.5.3"

ERROR_PRONE_VERSION = "2.14.0"

KSP_VERSION = "1.6.21-1.0.5"
KSP_VERSION = "1.7.0-1.0.6"

maven_install(
artifacts = [
Expand Down
Binary file modified java/dagger/internal/codegen/xprocessing/xprocessing-testing.jar
Binary file not shown.
Binary file modified java/dagger/internal/codegen/xprocessing/xprocessing.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion javatests/artifacts/dagger/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
buildscript {
ext {
dagger_version = "LOCAL-SNAPSHOT"
kotlin_version = "1.5.32"
kotlin_version = "1.7.0"
junit_version = "4.13"
truth_version = "1.0.1"
}
Expand Down
2 changes: 1 addition & 1 deletion javatests/artifacts/hilt-android/simple/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
buildscript {
ext {
dagger_version = 'LOCAL-SNAPSHOT'
kotlin_version = '1.5.32'
kotlin_version = '1.7.0'
agp_version = System.getenv('AGP_VERSION') ?: "4.2.0"
}
repositories {
Expand Down
2 changes: 1 addition & 1 deletion javatests/artifacts/hilt-android/simpleKotlin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

buildscript {
ext {
kotlin_version = '1.5.32'
kotlin_version = '1.7.0'
agp_version = System.getenv('AGP_VERSION') ?: "4.2.0"
}
repositories {
Expand Down

0 comments on commit db6a656

Please sign in to comment.