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

#### v15.2.0

- **Dependency Upgrade**: Compose 1.12.x

#### v15.1.0

- **Breaking Change (Gradle Plugin)**: The Gradle plugin now targets Java 17 (previously Java 11), following AGP 9.3.1 which raised its own JVM target to 17.
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ Tapping a library opens its details — inline, in a dialog, or in a bottom shee

## Latest releases 🛠

- Compose 1.12.x | New UI | AGP 9 | Kotlin 2.4 | Compile 37 | [v15.2.0](https://github.com/mikepenz/AboutLibraries/tree/15.2.0)
- Compose 1.11.x | New UI | AGP 9 | Kotlin 2.4 | Compile 37 | [v15.1.1](https://github.com/mikepenz/AboutLibraries/tree/15.1.1)
- Compose 1.10.x | AGP 9 | [v14.1.0](https://github.com/mikepenz/AboutLibraries/tree/14.1.0)

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
GROUP=com.mikepenz

VERSION_NAME=15.1.1
VERSION_CODE=150101
VERSION_NAME=15.2.0
VERSION_CODE=150200

POM_URL=https://github.com/mikepenz/AboutLibraries
POM_SCM_URL=https://github.com/mikepenz/AboutLibraries
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ cardview = "1.0.0"
constraintLayout = "2.2.2"
core = "1.19.0"
lifecycle = { require = "2.11.0" }
navigation = "2.9.8"
navigation = "2.10.0"
recyclerView = "1.4.0"
# google
material = "1.14.0"
# other
fastAdapter = "5.7.0"
iconics = "5.5.0"
iconics = "5.6.0"
itemAnimators = "1.1.0"
ivy = "2.6.0"
modelBuilder = "3.9.16"
Expand Down
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-9.7.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.7.1-bin.zip
networkTimeout=10000
retries=0
retryBackOffMs=500
Expand Down
2 changes: 1 addition & 1 deletion plugin-build/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-9.7.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.7.1-bin.zip
networkTimeout=10000
retries=0
retryBackOffMs=500
Expand Down
2 changes: 1 addition & 1 deletion plugin-build/settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dependencyResolutionManagement {
from(files("../gradle/libs.versions.toml"))
}
create("baseLibs") {
from("com.mikepenz:version-catalog:0.19.0")
from("com.mikepenz:version-catalog:0.20.0")
}
}
}
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ dependencyResolutionManagement {

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