Skip to content

Commit b01c123

Browse files
authored
Merge pull request #13 from oikvpqya/dev/fix-jvm-again
fix: Downgrade jvmToolchain to 1.8.(again)
2 parents 85be9f1 + c50df67 commit b01c123

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,16 +53,16 @@ repositories {
5353
}
5454
5555
dependencies {
56-
implementation "io.github.oikvpqya.compose.fastscroller:fastscroller-core:0.3.0"
56+
implementation "io.github.oikvpqya.compose.fastscroller:fastscroller-core:0.3.1"
5757
5858
// Optional: Provides scroll bar Material Design 2 theme by defaultMaterialScrollbarStyle
59-
implementation "io.github.oikvpqya.compose.fastscroller:fastscroller-material:0.3.0"
59+
implementation "io.github.oikvpqya.compose.fastscroller:fastscroller-material:0.3.1"
6060
6161
// Optional: Provides scroll bar Material Design 3 theme by defaultMaterialScrollbarStyle
62-
implementation "io.github.oikvpqya.compose.fastscroller:fastscroller-material3:0.3.0"
62+
implementation "io.github.oikvpqya.compose.fastscroller:fastscroller-material3:0.3.1"
6363
6464
// Optional: Provides scroll bar indicator shape
65-
implementation "io.github.oikvpqya.compose.fastscroller:fastscroller-indicator:0.3.0"
65+
implementation "io.github.oikvpqya.compose.fastscroller:fastscroller-indicator:0.3.1"
6666
}
6767
```
6868

fastscroller-core/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
kotlin {
10-
jvmToolchain(1_8)
10+
jvmToolchain(8)
1111

1212
applyDefaultHierarchyTemplate()
1313

fastscroller-indicator/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
kotlin {
10-
jvmToolchain(1_8)
10+
jvmToolchain(8)
1111

1212
applyDefaultHierarchyTemplate()
1313

fastscroller-material/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
kotlin {
10-
jvmToolchain(1_8)
10+
jvmToolchain(8)
1111

1212
applyDefaultHierarchyTemplate()
1313

fastscroller-material3/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
kotlin {
10-
jvmToolchain(1_8)
10+
jvmToolchain(8)
1111

1212
applyDefaultHierarchyTemplate()
1313

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ SONATYPE_CLOSE_TIMEOUT_SECONDS=900
2828
RELEASE_SIGNING_ENABLED=true
2929

3030
GROUP=io.github.oikvpqya.compose.fastscroller
31-
VERSION_NAME=0.3.0
31+
VERSION_NAME=0.3.1
3232

3333
POM_DESCRIPTION=Scroll bar library for Android and Compose Multiplatform.
3434
POM_INCEPTION_YEAR=2025

0 commit comments

Comments
 (0)