Skip to content

Commit ffdf9ae

Browse files
committed
fix: use iOS target for Swift bindings generation, bump to 0.17.8
1 parent 9517f74 commit ffdf9ae

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,9 @@ jobs:
5353
working-directory: bindings
5454
run: |
5555
mkdir -p out
56-
CURRENT_ARCH=$(rustc --version --verbose | grep host | cut -f2 -d' ')
5756
cargo run --features="uniffi/cli" --bin uniffi-bindgen generate \
5857
--config uniffi.toml \
59-
--library ../target/$CURRENT_ARCH/release/libcooklang_bindings.a \
58+
--library ../target/aarch64-apple-ios/release/libcooklang_bindings.a \
6059
--language swift \
6160
--out-dir out
6261

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cooklang"
3-
version = "0.17.7"
3+
version = "0.17.8"
44
edition = "2021"
55
authors = ["Zheoni <zheoni@outlook.es>"]
66
description = "Cooklang parser with opt-in extensions"

bindings/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cooklang-bindings"
3-
version = "0.17.7"
3+
version = "0.17.8"
44
edition = "2021"
55
authors = ["dubadub <dubovskoy.a@gmail.com>"]
66
description = "Cooklang Uniffi bindings"

0 commit comments

Comments
 (0)