Skip to content

Commit

Permalink
Revert "Reverting v1.8"
Browse files Browse the repository at this point in the history
This reverts commit 8bd99f9.
  • Loading branch information
furkanayaz committed Jan 8, 2024
1 parent b57e7e6 commit 48913fc
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 61,4 @@ val tabs: List<SlippyTab> =
), tabs = tabs)
```

8 Jan, 2024 - Furkan Ayaz
25 Dec, 2023 - Furkan Ayaz
6 changes: 3 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 30,11 @@ android {
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = "11"
jvmTarget = "17"
}
buildFeatures {
compose = true
Expand Down
5 changes: 3 additions & 2 deletions jtpack.yml
Original file line number Diff line number Diff line change
@@ -1,4 1,5 @@
jdk:
- openjdk11
- openjdk17
before_install:
- ./scripts/prepareJitpackEnvironment.sh
- sdk install java 17.0.9-open
- sdk use java 17.0.9-open
8 changes: 4 additions & 4 deletions lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 24,11 @@ android {
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = "11"
jvmTarget = "17"
}
buildFeatures {
compose = true
Expand All @@ -54,7 54,7 @@ publishing {
register<MavenPublication>("release") {
groupId = "com.github.furkanayaz"
artifactId = "slippy-bottom-bar"
version = "1.9"
version = "1.8"

afterEvaluate {
from(components["release"])
Expand Down
2 changes: 1 addition & 1 deletion lib/src/main/java/com/fa/lib/SlippyBottomBar.kt
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 52,7 @@ import androidx.compose.ui.unit.dp
import com.fa.slippybottombar.R

/**
* @since Jan 8, 2024
* @since Jan 7, 2024
* @author Furkan Ayaz
*
* @param [theme]
Expand Down

0 comments on commit 48913fc

Please sign in to comment.