diff --git a/CHANGELOG.md b/CHANGELOG.md index 20d926a..21dcd80 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## 0.3.0 2023-06-25 + +* Add tvOS, watchOS, macOS targets + ## 0.2.1 2023-03-05 * Compile with Java 8 toolchain diff --git a/README.md b/README.md index c623a7d..63a4f6e 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,10 @@ # Swift Klib Gradle Plugin -![badge][badge-ios] -![badge][badge-mac] -![badge][badge-tvos] -![badge][badge-watchos] +![badge-ios](https://img.shields.io/badge/platform-ios-light) +![badge-mac](https://img.shields.io/badge/platform-macos-light) +![badge-tvos](https://img.shields.io/badge/platform-tvos-light) +![badge-watchos](https://img.shields.io/badge/platform-watchos-light) This gradle plugin provides easy way to include your Swift source files in your **Kotlin Multiplatform Mobile** shared module and access them in Kotlin via `cinterop` for iOS targets. It is useful for: diff --git a/examples/file-hasher/shared/build.gradle.kts b/examples/file-hasher/shared/build.gradle.kts index 856e2f0..80cc40f 100644 --- a/examples/file-hasher/shared/build.gradle.kts +++ b/examples/file-hasher/shared/build.gradle.kts @@ -1,7 +1,7 @@ plugins { kotlin("multiplatform") id("com.android.library") - id("io.github.ttypic.swiftklib") version "0.2.1" + id("io.github.ttypic.swiftklib") version "0.3.0" } kotlin { diff --git a/plugin/build.gradle.kts b/plugin/build.gradle.kts index 5aaa8a9..df08ae4 100644 --- a/plugin/build.gradle.kts +++ b/plugin/build.gradle.kts @@ -9,7 +9,7 @@ dependencies { implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.22") } -version = "0.3.0" +version = "0.4.0-SNAPSHOT" group = "io.github.ttypic" kotlin {