diff --git a/build.gradle.kts b/build.gradle.kts index 2e2139f..6041770 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -20,7 +20,7 @@ allprojects { allprojects { group = "io.exoquery" - version = "2.0.1" + version = "2.0.2" } subprojects { diff --git a/pprint-kotlin-core/build.gradle.kts b/pprint-kotlin-core/build.gradle.kts index 1c9f26d..bec35fc 100644 --- a/pprint-kotlin-core/build.gradle.kts +++ b/pprint-kotlin-core/build.gradle.kts @@ -59,7 +59,8 @@ kotlin { androidNativeArm32() androidNativeArm64() - // Linux needs to know about these + // Need to know about this since we publish the -tooling metadata from + // the linux containers. Although it doesn't build these it needs to know about them. macosX64() macosArm64() iosX64() diff --git a/pprint-kotlin-kmp/build.gradle.kts b/pprint-kotlin-kmp/build.gradle.kts index 8f8a189..2279306 100644 --- a/pprint-kotlin-kmp/build.gradle.kts +++ b/pprint-kotlin-kmp/build.gradle.kts @@ -59,7 +59,23 @@ kotlin { androidNativeX86() androidNativeArm32() androidNativeArm64() + + // Need to know about this since we publish the -tooling metadata from + // the linux containers. Although it doesn't build these it needs to know about them. + macosX64() + macosArm64() + iosX64() + iosArm64() + iosSimulatorArm64() + tvosX64() + tvosArm64() + watchosX64() + watchosArm32() + watchosArm64() + + mingwX64() } + if (isMac && isCI) { macosX64() macosArm64()