Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ jobs:
python3.11 ./tools/generate.py

- name: Upload artifact(production bindings)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: production-bindings
path: |
src/generated/

- name: Upload artifact(debug bindings)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: debug-bindings
path: |
Expand Down
Binary file modified dist/libavoid.wasm
Binary file not shown.
Binary file modified examples/debug-dist/libavoid.wasm
Binary file not shown.
2 changes: 1 addition & 1 deletion examples/debug-dist/libavoid.wasm.map

Large diffs are not rendered by default.

Binary file modified examples/debug-src/generated/libavoid.wasm
Binary file not shown.
2 changes: 1 addition & 1 deletion examples/debug-src/generated/libavoid.wasm.map

Large diffs are not rendered by default.

Binary file modified examples/dist/libavoid.wasm
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "libavoid-js",
"version": "0.4.2",
"version": "0.4.3",
"description": "JS port of libavoid library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
Binary file modified src/generated/libavoid.wasm
Binary file not shown.
2 changes: 1 addition & 1 deletion tools/generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
'graph',
'router'
]
ADAPTAGRAMS_VERSION = "1.0.0"
ADAPTAGRAMS_VERSION = "1.0.1"

logging.basicConfig()
logger = logging.getLogger()
Expand Down
Loading