Skip to content

Release v0.17.11

Choose a tag to compare

@github-actions github-actions released this 22 Dec 20:36
· 13 commits to main since this release

Cooklang Parser Release v0.17.11

iOS (Swift Package Manager)

Add to your Package.swift or Xcode project:

.package(url: "https://github.com/cooklang/cooklang-rs.git", from: "v0.17.11")

Or download CooklangParserFFI.xcframework.zip for manual integration.

Supported architectures:

  • iOS arm64 (devices)
  • iOS arm64 (simulator, Apple Silicon)

Android (GitHub Packages Maven)

Add to your settings.gradle.kts:

dependencyResolutionManagement {
    repositories {
        maven {
            url = uri("https://maven.pkg.github.com/cooklang/cooklang-rs")
            credentials {
                username = System.getenv("GITHUB_ACTOR") ?: project.findProperty("gpr.user") as String?
                password = System.getenv("GITHUB_TOKEN") ?: project.findProperty("gpr.key") as String?
            }
        }
    }
}

Add to your build.gradle.kts:

implementation("org.cooklang:parser:v0.17.11")

Or download cooklang-parser-android.zip for manual integration.

Supported architectures:

  • arm64-v8a
  • armeabi-v7a
  • x86_64

Note: This replaces the deprecated cooklang-kotlin repository.

Rust (crates.io)

[dependencies]
cooklang = "v0.17.11"

TypeScript/JavaScript (npm)

npm install @cooklang/cooklang

See the README for detailed integration instructions.

Full Changelog: v0.17.10...v0.17.11