Skip to content

Commit

Permalink
Release 0.2.17
Browse files Browse the repository at this point in the history
  • Loading branch information
andreypfau committed Nov 10, 2023
1 parent b1edc4b commit 5a0879c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

```kotlin
dependencies {
implementation("org.ton:ton-kotlin:0.2.15")
implementation("org.ton:ton-kotlin:0.2.17")
}
```

Expand All @@ -21,7 +21,7 @@ dependencies {
<dependency>
<groupId>org.ton</groupId>
<artifactId>ton-kotlin-jvm</artifactId>
<version>0.2.15</version>
<version>0.2.17</version>
</dependency>
```

Expand Down
6 changes: 5 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 {
Expand Down

0 comments on commit 5a0879c

Please sign in to comment.