Skip to content

Commit

Permalink
chore: dependency updates - kotlin 1.9.23, java 21, gradle 8.7
Browse files Browse the repository at this point in the history
  • Loading branch information
vihangpatil committed Apr 19, 2024
1 parent c94c57c commit 001cf3f
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 19 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ jobs:
steps:
- name: Checkout the Repository
uses: actions/checkout@v3
- name: Setup jdk19
- name: Setup jdk21
uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: "20.0.2"
java-version: "21.0.2"
cache: gradle
- name: Validate gradle wrapper
uses: gradle/wrapper-validation-action@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ jobs:
steps:
- name: Checkout the Repository
uses: actions/checkout@v3
- name: Setup jdk19
- name: Setup jdk21
uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: "20.0.2"
java-version: "21.0.2"
cache: gradle
- name: Validate gradle wrapper
uses: gradle/wrapper-validation-action@v1
Expand Down
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ endif::[]

image:https://github.com/vihangpatil/firestore4k/actions/workflows/build.yaml/badge.svg?branch=main[Build Status]
image:https://img.shields.io/github/actions/workflow/status/vihangpatil/firestore4k/build.yaml?branch=main&logo=github[Build Status]
image:https://img.shields.io/badge/kotlin-1.9.0-7f52ff.svg?logo=kotlin[Kotlin version badge]
image:https://img.shields.io/badge/kotlin-1.9.23-7f52ff.svg?logo=kotlin[Kotlin version badge]
image:https://img.shields.io/github/license/vihangpatil/firestore4k.svg[GitHub license]

Firestore Client for Kotlin JVM with strict (and relaxed) type-system. +
Expand Down
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ allprojects {
}

tasks.withType<JavaCompile>().configureEach {
sourceCompatibility = JavaVersion.VERSION_20.toString()
targetCompatibility = JavaVersion.VERSION_20.toString()
sourceCompatibility = JavaVersion.VERSION_21.toString()
targetCompatibility = JavaVersion.VERSION_21.toString()
}

tasks.withType<KotlinCompile>().configureEach {
kotlinOptions {
jvmTarget = JavaVersion.VERSION_20.majorVersion
jvmTarget = JavaVersion.VERSION_21.majorVersion
}
}
}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
20 changes: 10 additions & 10 deletions versions.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,22 @@
####
#### NOTE: Some versions are filtered by the rejectVersionsIf predicate. See the settings.gradle.kts file.

plugin.com.google.devtools.ksp=1.9.0-1.0.12
plugin.com.google.devtools.ksp=1.9.23-1.0.20

version.com.google.cloud..libraries-bom=26.19.0
version.com.google.cloud..libraries-bom=26.37.0

version.junit.jupiter=5.10.0
version.junit.jupiter=5.10.2

version.kotlin=1.9.0
version.kotlin=1.9.23

version.kotlinpoet=1.14.2
version.kotlinpoet=1.16.0

version.kotlinx.coroutines=1.7.3
version.kotlinx.coroutines=1.8.0

version.kotlinx.serialization=1.5.1
version.kotlinx.serialization=1.6.3

version.ksp=1.9.0-1.0.12
version.ksp=1.9.23-1.0.20

version.slf4j=2.0.7
version.slf4j=2.0.13

version.testcontainers=1.18.3
version.testcontainers=1.19.7

0 comments on commit 001cf3f

Please sign in to comment.