Skip to content

Commit 6f3a909

Browse files
bumping versions
1 parent 6874543 commit 6f3a909

File tree

5 files changed

+17
-11
lines changed

5 files changed

+17
-11
lines changed

sdk/runanywhere-kotlin/build.gradle.kts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,15 @@ val testLocal: Boolean = rootProject.findProperty("runanywhere.testLocal")?.toSt
6464
// - https://github.com/RunanywhereAI/runanywhere-binaries/releases (Android JNI libs for backends)
6565
// - https://github.com/RunanywhereAI/runanywhere-sdks/releases (Android JNI libs for commons)
6666
// IMPORTANT: Check rootProject first to support composite builds
67+
// Version defaults must match GitHub releases:
68+
// - Commons: https://github.com/RunanywhereAI/runanywhere-sdks/releases/tag/commons-v{commonsVersion}
69+
// - Backends: https://github.com/RunanywhereAI/runanywhere-binaries/releases/tag/core-v{coreVersion}
6770
val coreVersion: String = rootProject.findProperty("runanywhere.coreVersion")?.toString()
6871
?: project.findProperty("runanywhere.coreVersion")?.toString()
69-
?: "0.2.6"
72+
?: "0.1.3"
7073
val commonsVersion: String = rootProject.findProperty("runanywhere.commonsVersion")?.toString()
7174
?: project.findProperty("runanywhere.commonsVersion")?.toString()
72-
?: "0.1.2"
75+
?: "0.1.3"
7376

7477
// Log the build mode
7578
logger.lifecycle("RunAnywhere SDK: testLocal=$testLocal, coreVersion=$coreVersion")

sdk/runanywhere-kotlin/gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ runanywhere.testLocal=false
3737
# Must match a GitHub release tag at: https://github.com/RunanywhereAI/runanywhere-binaries/releases
3838
# Contains: RABackendLlamaCPP-android, RABackendONNX-android
3939
# This matches Swift's coreVersion in Package.swift
40-
runanywhere.coreVersion=0.2.6
40+
runanywhere.coreVersion=0.1.3
4141

4242
# Version of runanywhere-commons release for JNI downloads (when testLocal=false)
4343
# Must match a GitHub release tag at: https://github.com/RunanywhereAI/runanywhere-sdks/releases
4444
# Contains: RACommons-android (librac_commons.so, librac_commons_jni.so)
45-
runanywhere.commonsVersion=0.1.2
45+
runanywhere.commonsVersion=0.1.3

sdk/runanywhere-kotlin/modules/runanywhere-core-llamacpp/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ val testLocal: Boolean = rootProject.findProperty("runanywhere.testLocal")?.toSt
3232
?: false
3333
val coreVersion: String = rootProject.findProperty("runanywhere.coreVersion")?.toString()
3434
?: project.findProperty("runanywhere.coreVersion")?.toString()
35-
?: "0.2.6"
35+
?: "0.1.3"
3636

3737
logger.lifecycle("LlamaCPP Module: testLocal=$testLocal, coreVersion=$coreVersion")
3838

sdk/runanywhere-kotlin/modules/runanywhere-core-onnx/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ val testLocal: Boolean = rootProject.findProperty("runanywhere.testLocal")?.toSt
3636
?: false
3737
val coreVersion: String = rootProject.findProperty("runanywhere.coreVersion")?.toString()
3838
?: project.findProperty("runanywhere.coreVersion")?.toString()
39-
?: "0.2.6"
39+
?: "0.1.3"
4040

4141
logger.lifecycle("ONNX Module: testLocal=$testLocal, coreVersion=$coreVersion")
4242

sdk/runanywhere-swift/Package.swift

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,11 @@ let onnxRuntimeMacOSPath = "\(packageDir)/Binaries/onnxruntime-macos"
2525
let testLocal = false // PRODUCTION: download XCFrameworks from GitHub releases
2626

2727
// Version constants for remote XCFrameworks (must be defined before package)
28-
let commonsVersion = "0.1.2"
29-
let coreVersion = "0.2.6"
28+
// These versions must match the GitHub releases:
29+
// - Commons: https://github.com/RunanywhereAI/runanywhere-sdks/releases/tag/commons-v{commonsVersion}
30+
// - Backends: https://github.com/RunanywhereAI/runanywhere-binaries/releases/tag/core-v{coreVersion}
31+
let commonsVersion = "0.1.3"
32+
let coreVersion = "0.1.3"
3033
// =============================================================================
3134

3235
let package = Package(
@@ -254,7 +257,7 @@ func binaryTargets() -> [Target] {
254257
.binaryTarget(
255258
name: "RACommonsBinary",
256259
url: "https://github.com/RunanywhereAI/runanywhere-sdks/releases/download/commons-v\(commonsVersion)/RACommons-ios-v\(commonsVersion).zip",
257-
checksum: "3b977fbe794d561582b9639ab7b84fad450854935d1a5a3458f7b611794025ed"
260+
checksum: "0f58150966f9d37b15734206fff8467461454c84ffdcece6971f5f3cbe863120"
258261
),
259262
// =================================================================
260263
// RABackendLlamaCPP - LLM text generation backend
@@ -263,7 +266,7 @@ func binaryTargets() -> [Target] {
263266
.binaryTarget(
264267
name: "RABackendLlamaCPPBinary",
265268
url: "https://github.com/RunanywhereAI/runanywhere-binaries/releases/download/core-v\(coreVersion)/RABackendLlamaCPP-ios-v\(coreVersion).zip",
266-
checksum: "a887ed95b503ba1daeecbb678c27f41b017358ee51a2373c13df1df43b8afebf"
269+
checksum: "03cc71969c7974ef904c2caa4c4ed3734e9fce1ae2cb9c758760595e2574091e"
267270
),
268271
// =================================================================
269272
// RABackendONNX - STT/TTS/VAD backend (includes Sherpa-ONNX)
@@ -272,7 +275,7 @@ func binaryTargets() -> [Target] {
272275
.binaryTarget(
273276
name: "RABackendONNXBinary",
274277
url: "https://github.com/RunanywhereAI/runanywhere-binaries/releases/download/core-v\(coreVersion)/RABackendONNX-ios-v\(coreVersion).zip",
275-
checksum: "055f2f076291475d0f58b1695411240807d1db006bb5d557e1733e0b655055eb"
278+
checksum: "c59431dd66e1db7344318a2cd0cca8cb310efc389c22ee5b91c1d6f937b57061"
276279
),
277280
// =================================================================
278281
// ONNX Runtime - Required by RABackendONNX

0 commit comments

Comments
 (0)