Skip to content

Commit

Permalink
Prepare Node + WASM bindings releases (#1720)
Browse files Browse the repository at this point in the history
* make node and wasm releases

* update the min sdk version

* try a different flag

* try another flag

* try another flag
  • Loading branch information
nplasterer authored Mar 6, 2025
1 parent 798e5da commit ec56c11
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-kotlin-bindings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
tool: cargo-ndk
- name: Build target
run: |
cargo ndk -o bindings_ffi/jniLibs/ --manifest-path bindings_ffi/Cargo.toml -t ${{ matrix.target }} -- build --release
cargo ndk --platform 23 -o bindings_ffi/jniLibs/ --manifest-path bindings_ffi/Cargo.toml -t ${{ matrix.target }} -- build --release
- name: Prepare JNI libs
run: |
mkdir -p bindings_ffi/jniLibs/${{ matrix.output_target }}/ && \
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions bindings_node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# @xmtp/node-bindings

## 0.0.40

- Fixed Rust Panic Error on Streams
- Added `should_push` field on messages for push notifications

## 0.0.39

- Added `content_types` option to `ListMessagesOptions`
Expand Down
2 changes: 1 addition & 1 deletion bindings_node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@xmtp/node-bindings",
"version": "0.0.39",
"version": "0.0.40",
"repository": {
"type": "git",
"url": "git+https://[email protected]/xmtp/libxmtp.git",
Expand Down
5 changes: 5 additions & 0 deletions bindings_wasm/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# @xmtp/wasm-bindings

## 0.0.20

- Fixed Rust Panic Error on Streams
- Added `should_push` field on messages for push notifications

## 0.0.19

- Refactored `ContentState` to serialize to `u16`
Expand Down
2 changes: 1 addition & 1 deletion bindings_wasm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@xmtp/wasm-bindings",
"version": "0.0.19",
"version": "0.0.20",
"type": "module",
"license": "MIT",
"description": "WASM bindings for the libXMTP rust library",
Expand Down

0 comments on commit ec56c11

Please sign in to comment.