diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 57263a49..a6945c85 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,6 +25,8 @@ jobs: gradle_args: publishIosX64PublicationToSonatypeRepository - os: macos-latest gradle_args: publishIosArm64PublicationToSonatypeRepository + - os: macos-latest + gradle_args: publishIosSimulatorArm64PublicationToSonatypeRepository runs-on: ${{ matrix.os }} steps: - name: Checkout project sources diff --git a/README.md b/README.md index 3827c69a..00150aae 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ ```kotlin dependencies { - implementation("org.ton:ton-kotlin:0.2.15") + implementation("org.ton:ton-kotlin:0.2.17") } ``` @@ -21,7 +21,7 @@ dependencies { org.ton ton-kotlin-jvm - 0.2.15 + 0.2.17 ``` diff --git a/build.gradle.kts b/build.gradle.kts index 6e51861b..6d29b3a8 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -21,7 +21,7 @@ val disableNativeTarget = System.getenv("TON_KOTLIN_DISABLE_NATIVE_TARGET") == " allprojects { group = "org.ton" - version = "0.3.0-SNAPSHOT".let { + version = "0.2.17".let { if (isSnapshot && !it.endsWith("-SNAPSHOT")) { "$it-SNAPSHOT" } else it @@ -82,6 +82,10 @@ allprojects { compilations["main"].defaultSourceSet.dependsOn(sourceSets["darwinMain"]) compilations["test"].defaultSourceSet.dependsOn(sourceSets["darwinTest"]) } + iosSimulatorArm64 { + compilations["main"].defaultSourceSet.dependsOn(sourceSets["darwinMain"]) + compilations["test"].defaultSourceSet.dependsOn(sourceSets["darwinTest"]) + } } sourceSets {