Skip to content

Commit

Permalink
release: 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ttypic committed Nov 16, 2023
1 parent ed96617 commit e2eecf4
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ 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.5.0 2023-11-16

[Full Changelog](https://github.com/ttypic/swift-klib-plugin/compare/v0.4.0...v0.5.0)

**Merged pull requests:**

- Support Xcode being installed in a non-default path [\#17](https://github.com/ttypic/swift-klib-plugin/pull/17) ([hartbit](https://github.com/hartbit))
- fix: use platformVersion instead of min*Version linker flag for xcode 15 [\#19](https://github.com/ttypic/swift-klib-plugin/pull/19)

## 0.4.0 2023-10-08

[Full Changelog](https://github.com/ttypic/swift-klib-plugin/compare/v0.3.0...v0.4.0)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.4.0"
id("io.github.ttypic.swiftklib") version "0.5.0"
}
```

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.4.0"
id("io.github.ttypic.swiftklib") version "0.5.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.4.0"
version = "0.5.0"
group = "io.github.ttypic"

kotlin {
Expand Down

0 comments on commit e2eecf4

Please sign in to comment.