Skip to content

Commit ec56c11

Browse files
authored
Prepare Node + WASM bindings releases (#1720)
* make node and wasm releases * update the min sdk version * try a different flag * try another flag * try another flag
1 parent 798e5da commit ec56c11

File tree

6 files changed

+16
-6
lines changed

6 files changed

+16
-6
lines changed

.github/workflows/release-kotlin-bindings.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
tool: cargo-ndk
4040
- name: Build target
4141
run: |
42-
cargo ndk -o bindings_ffi/jniLibs/ --manifest-path bindings_ffi/Cargo.toml -t ${{ matrix.target }} -- build --release
42+
cargo ndk --platform 23 -o bindings_ffi/jniLibs/ --manifest-path bindings_ffi/Cargo.toml -t ${{ matrix.target }} -- build --release
4343
- name: Prepare JNI libs
4444
run: |
4545
mkdir -p bindings_ffi/jniLibs/${{ matrix.output_target }}/ && \

Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bindings_node/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# @xmtp/node-bindings
22

3+
## 0.0.40
4+
5+
- Fixed Rust Panic Error on Streams
6+
- Added `should_push` field on messages for push notifications
7+
38
## 0.0.39
49

510
- Added `content_types` option to `ListMessagesOptions`

bindings_node/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@xmtp/node-bindings",
3-
"version": "0.0.39",
3+
"version": "0.0.40",
44
"repository": {
55
"type": "git",
66
"url": "git+https://git@github.com/xmtp/libxmtp.git",

bindings_wasm/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# @xmtp/wasm-bindings
22

3+
## 0.0.20
4+
5+
- Fixed Rust Panic Error on Streams
6+
- Added `should_push` field on messages for push notifications
7+
38
## 0.0.19
49

510
- Refactored `ContentState` to serialize to `u16`

bindings_wasm/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@xmtp/wasm-bindings",
3-
"version": "0.0.19",
3+
"version": "0.0.20",
44
"type": "module",
55
"license": "MIT",
66
"description": "WASM bindings for the libXMTP rust library",

0 commit comments

Comments
 (0)