Skip to content

Commit

Permalink
release: 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ttypic committed Mar 5, 2023
1 parent ec4c4d8 commit 8d48834
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## 0.2.0 2022-02-26
## 0.2.1 2023-03-05

* Compile with Java 8 toolchain

## 0.2.0 2023-02-26

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

## 0.1.0 2022-02-08
## 0.1.0 2023-02-08

* Invalidate cinterop task if source Swift-files have changed

Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<img src="https://github.com/ttypic/swift-klib-plugin/raw/main/docs/media/swiftklib-light.svg" alt="Swift Klib library logo" width="300">

<br/>

# Swift Klib Gradle Plugin

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

```kotlin
plugins {
id("io.github.ttypic.swiftklib") version "0.2.0"
id("io.github.ttypic.swiftklib") version "0.2.1"
}
```

Expand All @@ -38,7 +36,7 @@ buildscript {
}
}
dependencies {
classpath("io.github.ttypic:plugin:0.2.0")
classpath("io.github.ttypic:plugin:0.2.1")
}
}

Expand Down
6 changes: 5 additions & 1 deletion plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,13 @@ dependencies {
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.22")
}

version = "0.3.0-SNAPSHOT"
version = "0.2.1"
group = "io.github.ttypic"

kotlin {
jvmToolchain(8)
}

gradlePlugin {
website.set("https://github.com/ttypic/swift-klib-plugin")
vcsUrl.set("https://github.com/ttypic/swift-klib-plugin")
Expand Down

0 comments on commit 8d48834

Please sign in to comment.