Skip to content

Commit cf61000

Browse files
committed
Release 0.6.4
1 parent b7d0f6c commit cf61000

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

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

88
## [Unreleased](https://github.com/ttypic/swift-klib-plugin/tree/HEAD)
99

10+
## [0.6.4] - 2024-10-13
11+
12+
- Disable plugin on non-macOS targets [\#39](https://github.com/ttypic/swift-klib-plugin/pull/39)
13+
1014
## [0.6.3] - 2024-07-21
1115

1216
- Fix build issues when project path has spaces [\#26](https://github.com/ttypic/swift-klib-plugin/issues/26)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Using the [plugins DSL](https://docs.gradle.org/current/userguide/plugins.html#s
2222

2323
```kotlin
2424
plugins {
25-
id("io.github.ttypic.swiftklib") version "0.6.3"
25+
id("io.github.ttypic.swiftklib") version "0.6.4"
2626
}
2727
```
2828

@@ -36,7 +36,7 @@ buildscript {
3636
}
3737
}
3838
dependencies {
39-
classpath("io.github.ttypic:plugin:0.6.3")
39+
classpath("io.github.ttypic:plugin:0.6.4")
4040
}
4141
}
4242

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.6.3"
4+
id("io.github.ttypic.swiftklib") version "0.6.4"
55
}
66

77
kotlin {

0 commit comments

Comments
 (0)