Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ updates:
# Keep Kotlin on 1.9.x for compatibility
- dependency-name: "org.jetbrains.kotlin.*"
versions: [">=2.0.0"]
# Keep kotlinx-serialization on 1.6.x (compatible with Kotlin 1.9.x)
# Keep kotlinx-serialization on 1.7.x while the library's Kotlin API/language
# consumer floor is pinned to 2.0.
- dependency-name: "org.jetbrains.kotlinx:kotlinx-serialization-json"
versions: [">=1.7.0"]
versions: [">=1.8.0"]
# Keep Mockito on 4.x (requires JVM 1.8)
- dependency-name: "org.mockito*:*"
versions: [">=5.0.0"]
Expand All @@ -50,9 +51,10 @@ updates:
# Keep Kotlin on 1.9.x for compatibility
- dependency-name: "org.jetbrains.kotlin.*"
versions: [">=2.0.0"]
# Keep kotlinx-serialization on 1.6.x (compatible with Kotlin 1.9.x)
# Keep kotlinx-serialization on 1.7.x while the library's Kotlin API/language
# consumer floor is pinned to 2.0.
- dependency-name: "org.jetbrains.kotlinx:kotlinx-serialization-json"
versions: [">=1.7.0"]
versions: [">=1.8.0"]
# Keep Mockito on 4.x (requires JVM 1.8)
- dependency-name: "org.mockito*:*"
versions: [">=5.0.0"]
Expand Down
2 changes: 1 addition & 1 deletion platforms/android/lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def versionName = "4.0.0-alpha.1"
ext {
app_compat_version = '1.7.1'
kotlin_stdlib_version = '2.0.21'
kotlin_serialization_version = '1.6.3'
kotlin_serialization_version = '1.7.3'

androidx_test_version = '1.7.0'
androidx_junit_ext_version = '1.3.0'
Expand Down
Loading