diff --git a/README.md b/README.md
index baf148b..f4ee465 100644
--- a/README.md
+++ b/README.md
@@ -28,6 +28,7 @@ The following targets are currently supported:
 - watchosArm64
 - watchosSimulatorArm64
 - linuxX64
+- linuxArm64
 - mingwX64
 
 ## Download
diff --git a/build-logic/src/main/kotlin/io/github/reactivecircus/cache4k/buildlogic/convention/ConventionPlugin.kt b/build-logic/src/main/kotlin/io/github/reactivecircus/cache4k/buildlogic/convention/ConventionPlugin.kt
index 062a0ff..3513ba2 100644
--- a/build-logic/src/main/kotlin/io/github/reactivecircus/cache4k/buildlogic/convention/ConventionPlugin.kt
+++ b/build-logic/src/main/kotlin/io/github/reactivecircus/cache4k/buildlogic/convention/ConventionPlugin.kt
@@ -136,6 +136,7 @@ private fun KotlinMultiplatformExtension.configureTargets(project: Project) {
                 withWatchosArm64()
                 withWatchosSimulatorArm64()
                 withLinuxX64()
+                withLinuxArm64()
                 withMingwX64()
             }
         }
@@ -194,6 +195,7 @@ private fun KotlinMultiplatformExtension.configureTargets(project: Project) {
         watchosArm64()
         watchosSimulatorArm64()
         linuxX64()
+        linuxArm64()
         mingwX64()
     }
 }
diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml
index 4885dc2..4488e20 100644
--- a/gradle/libs.versions.toml
+++ b/gradle/libs.versions.toml
@@ -8,7 +8,7 @@ mavenPublish = "0.25.3"
 coroutines = "1.7.2"
 atomicfu = "0.21.0"
 lincheck = "2.17"
-statelyIso = "1.2.5"
+statelyIso = "2.0.4"
 
 [libraries]
 plugin-kotlin = { module = "org.jetbrains.kotlin:kotlin-gradle-plugin", version.ref = "kotlin" }