We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2c0809 commit 7d61530Copy full SHA for 7d61530
CHANGELOG.md
@@ -5,6 +5,7 @@ All notable changes to this project will be documented in this file.
5
## [Unreleased]
6
7
- Remove deprecated Kotlin/Native targets. See [kotl.in/native-targets-tiers](https://kotl.in/native-targets-tiers).
8
+- Fix build configuration error that prevented Linux targets from published. Versions 2.3.0 through 2.3.2 did not have Linux artifacts published.
9
10
## [2.3.2] - 2023-04-18
11
build.gradle.kts
@@ -84,7 +84,7 @@ kotlin {
84
if (HostManager.hostIsMingw) {
85
mingwX64()
86
}
87
- if (HostManager.hostIsLinux) {
+ if (HostManager.hostIsLinux || HostManager.hostIsMac) {
88
linuxX64()
89
90
androidNativeArm32()
0 commit comments