diff --git a/CHANGELOG.md b/CHANGELOG.md index df70550..cb8f7ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## 0.2.0 2022-02-26 + +* **Fix:** add step to clean old build files in build directory +* Light refactoring of source code + ## 0.1.0 2022-02-08 * Invalidate cinterop task if source Swift-files have changed diff --git a/README.md b/README.md index d132739..7cb1527 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Using the [plugins DSL](https://docs.gradle.org/current/userguide/plugins.html#s ```kotlin plugins { - id("io.github.ttypic.swiftklib") version "0.1.0" + id("io.github.ttypic.swiftklib") version "0.2.0" } ``` @@ -42,7 +42,7 @@ buildscript { } } dependencies { - classpath("io.github.ttypic:plugin:0.1.0") + classpath("io.github.ttypic:plugin:0.2.0") } } diff --git a/plugin/build.gradle.kts b/plugin/build.gradle.kts index 0f3a171..75ec2fa 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.2.0-SNAPSHOT" +version = "0.2.0" group = "io.github.ttypic" gradlePlugin {