Skip to content

Commit

Permalink
start: 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ttypic committed Jun 25, 2023
1 parent 251dde9 commit 20981ff
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion examples/file-hasher/shared/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 20981ff

Please sign in to comment.