Skip to content

Commit 9e74872

Browse files
authored
Merge pull request #53 from saschpe/saschpe.iosX64
Add iosX64 build target
2 parents ea1e3d1 + 1347fe4 commit 9e74872

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [1.3.2] - 2024-06-19
810
- Use more unique (internal) content provider authorities. Avoids potential clashes in apps integrating the library
911
- Dependency update:
1012
- [Gradle 8.8](https://docs.gradle.org/8.8/release-notes.html)
1113
- [Kotlin 2.0.0](https://github.com/JetBrains/kotlin/releases/tag/v2.0.0)
1214
- [kotlinx-io 0.4.0](https://github.com/Kotlin/kotlinx-io/releases/tag/0.4.0)
1315
- [kotlin-wrappers pre.757](https://github.com/JetBrains/kotlin-wrappers/releases/tag/pre.757)
16+
- Add iosX64 build target
1417

1518
## [1.3.1] - 2024-05-22
1619
- FileLogger: Remove constructor with `kotlinx.io.files.Path`

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ repositories {
2323
}
2424

2525
dependencies {
26-
implementation("de.peilicke.sascha:log4k:1.3.1")
26+
implementation("de.peilicke.sascha:log4k:1.3.2")
2727
}
2828
```
2929

log4k-slf4j/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ android {
4040
}
4141

4242
group = "de.peilicke.sascha"
43-
version = "1.3.1"
43+
version = "1.3.2"
4444

4545
publishing {
4646
publications.withType<MavenPublication> {

log4k/build.gradle.kts

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ plugins {
99
kotlin {
1010
androidTarget { publishAllLibraryVariants() }
1111
iosArm64()
12+
iosX64()
1213
iosSimulatorArm64()
1314
js { nodejs() }
1415
jvm()
@@ -58,7 +59,7 @@ android {
5859
}
5960

6061
group = "de.peilicke.sascha"
61-
version = "1.3.1"
62+
version = "1.3.2"
6263

6364
publishing {
6465
publications.withType<MavenPublication> {

0 commit comments

Comments
 (0)