Skip to content

Commit 8d48834

Browse files
committed
release: 0.2.1
1 parent ec4c4d8 commit 8d48834

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9-
## 0.2.0 2022-02-26
9+
## 0.2.1 2023-03-05
10+
11+
* Compile with Java 8 toolchain
12+
13+
## 0.2.0 2023-02-26
1014

1115
* **Fix:** add step to clean old build files in build directory
1216
* Light refactoring of source code
1317

14-
## 0.1.0 2022-02-08
18+
## 0.1.0 2023-02-08
1519

1620
* Invalidate cinterop task if source Swift-files have changed
1721

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<img src="https://github.com/ttypic/swift-klib-plugin/raw/main/docs/media/swiftklib-light.svg" alt="Swift Klib library logo" width="300">
22

3-
<br/>
4-
53
# Swift Klib Gradle Plugin
64

75
This gradle plugin provides easy way to include your Swift source files in your **Kotlin Multiplatform Mobile**
@@ -24,7 +22,7 @@ Using the [plugins DSL](https://docs.gradle.org/current/userguide/plugins.html#s
2422

2523
```kotlin
2624
plugins {
27-
id("io.github.ttypic.swiftklib") version "0.2.0"
25+
id("io.github.ttypic.swiftklib") version "0.2.1"
2826
}
2927
```
3028

@@ -38,7 +36,7 @@ buildscript {
3836
}
3937
}
4038
dependencies {
41-
classpath("io.github.ttypic:plugin:0.2.0")
39+
classpath("io.github.ttypic:plugin:0.2.1")
4240
}
4341
}
4442

plugin/build.gradle.kts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,13 @@ dependencies {
99
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.22")
1010
}
1111

12-
version = "0.3.0-SNAPSHOT"
12+
version = "0.2.1"
1313
group = "io.github.ttypic"
1414

15+
kotlin {
16+
jvmToolchain(8)
17+
}
18+
1519
gradlePlugin {
1620
website.set("https://github.com/ttypic/swift-klib-plugin")
1721
vcsUrl.set("https://github.com/ttypic/swift-klib-plugin")

0 commit comments

Comments
 (0)