diff --git a/CHANGELOG.md b/CHANGELOG.md index c99bff6..db530c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased](https://github.com/ttypic/swift-klib-plugin/tree/HEAD) +## [0.6.3] - 2024-07-21 + +- Fix build issues when project path has spaces [\#26](https://github.com/ttypic/swift-klib-plugin/issues/26) + ## [0.6.2] - 2024-07-21 [Full Changelog](https://github.com/ttypic/swift-klib-plugin/compare/v0.5.1...v0.6.2) diff --git a/README.md b/README.md index 1c0b874..55d4e63 100644 --- a/README.md +++ b/README.md @@ -22,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.6.2" + id("io.github.ttypic.swiftklib") version "0.6.3" } ``` @@ -36,7 +36,7 @@ buildscript { } } dependencies { - classpath("io.github.ttypic:plugin:0.6.2") + classpath("io.github.ttypic:plugin:0.6.3") } } diff --git a/examples/file-hasher/shared/build.gradle.kts b/examples/file-hasher/shared/build.gradle.kts index 2539cdf..2d89fa8 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.6.2" + id("io.github.ttypic.swiftklib") version "0.6.3" } kotlin { diff --git a/plugin/build.gradle.kts b/plugin/build.gradle.kts index dd7da3d..c65c9da 100644 --- a/plugin/build.gradle.kts +++ b/plugin/build.gradle.kts @@ -18,7 +18,7 @@ tasks.named("test") { useJUnitPlatform() } -version = "0.7.0-SNAPSHOT" +version = "0.6.3" group = "io.github.ttypic" kotlin {