You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore(release): v0.19.11 + critical Package.swift URL fix + zlib serial
Three issues bundled into one release iteration:
1. CRITICAL: Package.swift binary URLs were 404'ing for SPM consumers
The release.yml renamed iOS zips with an `-ios-` suffix in v0.19.0+
(e.g. RACommons-ios-vX.zip). Package.swift still pointed at the old
names (RACommons-vX.zip). Anyone consuming the SDK via SPM after
v0.19.0 would get badResponseStatusCode(404) from SwiftPM. CodeQL
Swift autobuild has been failing on every PR for the same reason.
2. zlib parallel-build race (was --parallel 2; now serial by default)
GitHub runners have 2 cores so --parallel 2 == default and the race
could still hit. Switch to `--parallel 1` (overridable via
CMAKE_BUILD_PARALLEL_LEVEL env). Adds ~5-10 min to the WASM build
but eliminates the intermittent llvm-ranlib failure permanently.
Addresses Greptile's P2 review comment on PR #488.
3. Kotlin JVM JAR named with SDK_VERSION instead of SNAPSHOT fallback
release.yml now forwards SDK_VERSION env into the gradle build so
the JAR lands as RunAnywhereKotlinSDK-jvm-{version}.jar instead of
RunAnywhereKotlinSDK-jvm-0.1.5-SNAPSHOT.jar.
Bumps all 16 manifests from 0.19.10 → 0.19.11.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
0 commit comments