Skip to content

Commit f2c0809

Browse files
committed
fix(build): remove deprecated targets
1 parent 94a7b44 commit f2c0809

File tree

4 files changed

+4
-13
lines changed

4 files changed

+4
-13
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
- name: Publish Windows artifacts
7474
uses: gradle/gradle-build-action@40b6781dcdec2762ad36556682ac74e31030cfe2 # v2.5.1
7575
with:
76-
arguments: publishMingwX64PublicationToSonatypeRepository publishMingwX86PublicationToSonatypeRepository -PenableNativeTargets
76+
arguments: publishMingwX64PublicationToSonatypeRepository -PenableNativeTargets
7777
env:
7878
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.NEXUS_PUBLISH_GPG_KEY }}
7979
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.NEXUS_PUBLISH_GPG_KEY_PASSWORD }}

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
- Remove deprecated Kotlin/Native targets. See [kotl.in/native-targets-tiers](https://kotl.in/native-targets-tiers).
8+
79
## [2.3.2] - 2023-04-18
810

911
- Upgrade to Kotlin 1.8.20

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ It is available as a Kotlin Multiplatform library for the following platforms
1010
- Browsers (JavaScript)
1111
- Linux x64
1212
- MingW x64
13-
- MingW x86
14-
- iOS arm32
1513
- iOS arm64
1614
- iOS x64
1715
- tvOS arm64

build.gradle.kts

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -64,22 +64,14 @@ kotlin {
6464
js(IR) {
6565
nodejs {}
6666
browser {}
67-
compilations.all {
68-
kotlinOptions {
69-
moduleKind = "umd"
70-
sourceMap = true
71-
sourceMapEmbedSources = null
72-
}
73-
}
67+
compilations.configureEach { kotlinOptions { moduleKind = "umd" } }
7468
}
7569
if (providers.gradleProperty("enableNativeTargets").isPresent) {
7670
if (HostManager.hostIsMac) {
7771
iosX64()
78-
iosArm32()
7972
iosArm64()
8073
tvosX64()
8174
tvosArm64()
82-
watchosX86()
8375
watchosX64()
8476
watchosArm32()
8577
watchosArm64()
@@ -90,7 +82,6 @@ kotlin {
9082
tvosSimulatorArm64()
9183
}
9284
if (HostManager.hostIsMingw) {
93-
mingwX86()
9485
mingwX64()
9586
}
9687
if (HostManager.hostIsLinux) {

0 commit comments

Comments
 (0)