diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index 111942e..86b9b77 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Setup Python 3.10 + - name: Setup Python 3.11 uses: actions/setup-python@v4 with: python-version: '3.11' diff --git a/CHANGELOG.md b/CHANGELOG.md index d6add95..e52a0ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [1.0.7] - 2023-09-07 ### Changed - Android: Compile with API level 33 / Android 13 +- Apple: Add targets for `tvOS` and `watchOS` and `macOS` x64 builds - Dependency update: - [Android Gradle Plugin 8.1.0-rc01](https://developer.android.com/studio/releases/gradle-plugin#7-2-0) - [Gradle-7.5.1](https://docs.gradle.org/7.5.1/release-notes.html) diff --git a/kase64/build.gradle.kts b/kase64/build.gradle.kts index 27fb6fb..9c777f3 100644 --- a/kase64/build.gradle.kts +++ b/kase64/build.gradle.kts @@ -19,19 +19,16 @@ kotlin { jvm { testRuns["test"].executionTask.configure { useJUnitPlatform() } } linuxX64() macosArm64() + macosX64() mingwX64() // Win-what ?!? - // tvos() - // watchos() + tvos() + watchos() sourceSets["commonTest"].dependencies { implementation(kotlin("test")) } sourceSets["iosSimulatorArm64Main"].dependsOn(sourceSets["iosMain"]) sourceSets["iosSimulatorArm64Test"].dependsOn(sourceSets["iosTest"]) - - targets.withType(org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTargetWithSimulatorTests::class.java) { - testRuns["test"].deviceId = "iPhone 14" - } } java {