Skip to content

Commit e2eecf4

Browse files
committed
release: 0.5.0
1 parent ed96617 commit e2eecf4

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

CHANGELOG.md

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

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

9+
## 0.5.0 2023-11-16
10+
11+
[Full Changelog](https://github.com/ttypic/swift-klib-plugin/compare/v0.4.0...v0.5.0)
12+
13+
**Merged pull requests:**
14+
15+
- Support Xcode being installed in a non-default path [\#17](https://github.com/ttypic/swift-klib-plugin/pull/17) ([hartbit](https://github.com/hartbit))
16+
- fix: use platformVersion instead of min*Version linker flag for xcode 15 [\#19](https://github.com/ttypic/swift-klib-plugin/pull/19)
17+
918
## 0.4.0 2023-10-08
1019

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

README.md

Lines changed: 1 addition & 1 deletion
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.4.0"
25+
id("io.github.ttypic.swiftklib") version "0.5.0"
2626
}
2727
```
2828

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

77
kotlin {

plugin/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dependencies {
99
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.22")
1010
}
1111

12-
version = "0.4.0"
12+
version = "0.5.0"
1313
group = "io.github.ttypic"
1414

1515
kotlin {

0 commit comments

Comments
 (0)