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
5 changes: 5 additions & 0 deletions MIGRATION.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
### Upgrade Notes

#### Version 0.39.0

- **Note**: The `highlights` library in v1.1.0 seems to be compiled with Java 21
Copy link

Copilot AI Dec 19, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The phrase "seems to be compiled with Java 21" is vague and uncertain. Consider being more definitive or providing specific evidence. If this is confirmed, use "is compiled with Java 21". If it's not confirmed, consider removing the uncertainty or specifying what evidence led to this conclusion.

Suggested change
- **Note**: The `highlights` library in v1.1.0 seems to be compiled with Java 21
- **Note**: The `highlights` library in v1.1.0 is compiled with Java 21

Copilot uses AI. Check for mistakes.
- **Note**: Some dependencies start to require minSDK: 23 (compared to the minSDK of 21 from before)

#### Version 0.38.0

- **Breaking Change**: Removes prior deprecated APIs and functionality (`PlaceholderConfig.animate`)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ plugins {
alias(baseLibs.plugins.mavenPublish) apply false
alias(baseLibs.plugins.binaryCompatiblityValidator) apply false
alias(baseLibs.plugins.versionCatalogUpdate) apply false
alias(baseLibs.plugins.compatPatrouille) apply false
alias(baseLibs.plugins.tapmoc) apply false
}

allprojects {
Expand Down
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[versions]
androidx-activityCompose = "1.10.1"
androidx-activityCompose = "1.12.2"
coil = "3.3.0"
coil2 = "2.7.0"
markdown = "0.7.3"
ktor = "3.2.3"
highlights = "1.0.0"
ktor = "3.3.3"
highlights = "1.1.0"

[libraries]
androidx-activity-compose = { module = "androidx.activity:activity-compose", version.ref = "androidx-activityCompose" }
Expand Down
3 changes: 2 additions & 1 deletion sample/android/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
com.mikepenz.binary-compatibility-validator.enabled=false
com.mikepenz.binary-compatibility-validator.enabled=false
com.mikepenz.android.minSdk=23
3 changes: 0 additions & 3 deletions sample/desktop/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,6 @@ compose.resources {
}

aboutLibraries {
android {
registerAndroidTasks = false
}
export {
exportVariant = "jvmMain"
outputPath = file("src/commonMain/composeResources/files/aboutlibraries.json")
Expand Down
1 change: 1 addition & 0 deletions sample/desktop/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
com.mikepenz.binary-compatibility-validator.enabled=false
com.mikepenz.hotreload.enabled=true
com.mikepenz.java.version=21
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dependencyResolutionManagement {

versionCatalogs {
create("baseLibs") {
from("com.mikepenz:version-catalog:0.9.0")
from("com.mikepenz:version-catalog:0.10.1")
}
}
}
Expand Down
Loading