File tree Expand file tree Collapse file tree 3 files changed +13
-7
lines changed Expand file tree Collapse file tree 3 files changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -6,12 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## [ Unreleased]
8
8
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
10
14
11
15
* ** Fix:** add step to clean old build files in build directory
12
16
* Light refactoring of source code
13
17
14
- ## 0.1.0 2022 -02-08
18
+ ## 0.1.0 2023 -02-08
15
19
16
20
* Invalidate cinterop task if source Swift-files have changed
17
21
Original file line number Diff line number Diff line change 1
1
<img src =" https://github.com/ttypic/swift-klib-plugin/raw/main/docs/media/swiftklib-light.svg " alt =" Swift Klib library logo " width =" 300 " >
2
2
3
- <br />
4
-
5
3
# Swift Klib Gradle Plugin
6
4
7
5
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
24
22
25
23
``` kotlin
26
24
plugins {
27
- id(" io.github.ttypic.swiftklib" ) version " 0.2.0 "
25
+ id(" io.github.ttypic.swiftklib" ) version " 0.2.1 "
28
26
}
29
27
```
30
28
@@ -38,7 +36,7 @@ buildscript {
38
36
}
39
37
}
40
38
dependencies {
41
- classpath(" io.github.ttypic:plugin:0.2.0 " )
39
+ classpath(" io.github.ttypic:plugin:0.2.1 " )
42
40
}
43
41
}
44
42
Original file line number Diff line number Diff line change @@ -9,9 +9,13 @@ dependencies {
9
9
implementation(" org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.22" )
10
10
}
11
11
12
- version = " 0.3.0-SNAPSHOT "
12
+ version = " 0.2.1 "
13
13
group = " io.github.ttypic"
14
14
15
+ kotlin {
16
+ jvmToolchain(8 )
17
+ }
18
+
15
19
gradlePlugin {
16
20
website.set(" https://github.com/ttypic/swift-klib-plugin" )
17
21
vcsUrl.set(" https://github.com/ttypic/swift-klib-plugin" )
You can’t perform that action at this time.
0 commit comments