Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ data class Android(
val kotlinMultiplatformLibrary: Boolean = false,
val hilt: String = "2.59.2",
val hiltAandroidx: String = "1.3.0",
val metro: String = "0.12.0",
val metro: String = "0.12.1",
val metroPlugin: String = "0.10.2",
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Plugin version not updated alongside library version

The metro runtime library has been bumped to 0.12.1, but metroPlugin (dev.zacsweers.metro.gradle.plugin) remains at 0.10.2. The PR title even states the intent is to update the Gradle plugin to 0.12.1, yet only the library version was changed.

Metro's Gradle plugin and runtime library are released together and are expected to be used at the same version — a two-minor-version gap (0.10.2 vs 0.12.1) can cause incompatibilities between the compile-time plugin and the runtime artifacts it generates code for.

metroPlugin should be updated to match:

Suggested change
val metroPlugin: String = "0.10.2",
val metroPlugin: String = "0.12.1",

val composeBom: String = "2026.03.01",
val robolectric: String = "4.16.1",
Expand Down
Loading