Skip to content

Commit e0779f0

Browse files
committed
Release 0.6.0
1 parent 0c7f7b1 commit e0779f0

File tree

4 files changed

+22
-7
lines changed

4 files changed

+22
-7
lines changed

CHANGELOG.md

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,23 @@
11
# Changelog
2+
23
All notable changes to this project will be documented in this file.
34

45
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
56
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
67

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

10+
## 0.6.0 2024-07-21
11+
12+
[Full Changelog](https://github.com/ttypic/swift-klib-plugin/compare/v0.5.1...v0.6.0)
13+
14+
**Merged pull requests:**
15+
16+
- Use Clang modules in cinterop instead of headers. [\#32](https://github.com/ttypic/swift-klib-plugin/pull/32)
17+
- Prettify swift build output [\#29](https://github.com/ttypic/swift-klib-plugin/pull/29)
18+
- Upgrade Gradle and dependencies. Migrate to version
19+
catalog. [\#31](https://github.com/ttypic/swift-klib-plugin/pull/31)
20+
921
## 0.5.1 2023-11-24
1022

1123
[Full Changelog](https://github.com/ttypic/swift-klib-plugin/compare/v0.5.0...v0.5.1)
@@ -20,8 +32,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2032

2133
**Merged pull requests:**
2234

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

2640
## 0.4.0 2023-10-08
2741

@@ -33,7 +47,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3347

3448
**Merged pull requests:**
3549

36-
- Workaround for wrong SDK in build process for Xcode15 [\#13](https://github.com/ttypic/swift-klib-plugin/pull/13) ([davidtaylor-juul](https://github.com/davidtaylor-juul))
50+
- Workaround for wrong SDK in build process for
51+
Xcode15 [\#13](https://github.com/ttypic/swift-klib-plugin/pull/13) ([davidtaylor-juul](https://github.com/davidtaylor-juul))
3752

3853
## 0.3.0 2023-06-25
3954

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.5.1"
25+
id("io.github.ttypic.swiftklib") version "0.6.0"
2626
}
2727
```
2828

@@ -36,7 +36,7 @@ buildscript {
3636
}
3737
}
3838
dependencies {
39-
classpath("io.github.ttypic:plugin:0.5.1")
39+
classpath("io.github.ttypic:plugin:0.6.0")
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.5.1"
4+
id("io.github.ttypic.swiftklib") version "0.6.0"
55
}
66

77
kotlin {

plugin/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ tasks.named<Test>("test") {
1818
useJUnitPlatform()
1919
}
2020

21-
version = "0.5.1"
21+
version = "0.6.0"
2222
group = "io.github.ttypic"
2323

2424
kotlin {

0 commit comments

Comments
 (0)