Skip to content

Commit 20981ff

Browse files
committed
start: 0.4.0
1 parent 251dde9 commit 20981ff

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

CHANGELOG.md

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

77
## [Unreleased]
88

9+
## 0.3.0 2023-06-25
10+
11+
* Add tvOS, watchOS, macOS targets
12+
913
## 0.2.1 2023-03-05
1014

1115
* Compile with Java 8 toolchain

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
# Swift Klib Gradle Plugin
44

5-
![badge][badge-ios]
6-
![badge][badge-mac]
7-
![badge][badge-tvos]
8-
![badge][badge-watchos]
5+
![badge-ios](https://img.shields.io/badge/platform-ios-light)
6+
![badge-mac](https://img.shields.io/badge/platform-macos-light)
7+
![badge-tvos](https://img.shields.io/badge/platform-tvos-light)
8+
![badge-watchos](https://img.shields.io/badge/platform-watchos-light)
99

1010
This gradle plugin provides easy way to include your Swift source files in your **Kotlin Multiplatform Mobile**
1111
shared module and access them in Kotlin via `cinterop` for iOS targets. It is useful for:

examples/file-hasher/shared/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
kotlin("multiplatform")
33
id("com.android.library")
4-
id("io.github.ttypic.swiftklib") version "0.2.1"
4+
id("io.github.ttypic.swiftklib") version "0.3.0"
55
}
66

77
kotlin {

plugin/build.gradle.kts

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

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

1515
kotlin {

0 commit comments

Comments
 (0)