From 5a0879ce1bda4706ed5be43716fc712a8d805bea Mon Sep 17 00:00:00 2001 From: Andrey Pfau Date: Fri, 10 Nov 2023 08:30:01 +0400 Subject: [PATCH] Release 0.2.17 --- .github/workflows/release.yml | 2 ++ README.md | 4 ++-- build.gradle.kts | 6 +++++- 3 files changed, 9 insertions(+), 3 deletions(-) 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 {