Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Upgrade to libbinaryen v102 #120

Merged
merged 9 commits into from Jan 26, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/opam.yml
Expand Up @@ -11,8 +11,8 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
ocaml-compiler: [4.12.0, 4.13.0]
os: [ubuntu-latest, macos-latest, windows-latest]
ocaml-compiler: [4.12.0, 4.13.1]

steps:
- name: Checkout project
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -35,7 +35,7 @@ let _ = Module.dispose wasm_mod
This project aims to provide full feature parity with the [Binaryen C API](https://github.com/WebAssembly/binaryen/blob/master/src/binaryen-c.h). It's fairly complete, but a few things still need bindings:

- SIMD instructions
- Events
- Tags
- Atomics
- Query operations on expressions
- Query operations on functions
Expand Down
2 changes: 1 addition & 1 deletion binaryen.opam
Expand Up @@ -18,5 +18,5 @@ depends: [
"js_of_ocaml" {>= "3.10.0"}
"js_of_ocaml-ppx" {>= "3.10.0"}
"js_of_ocaml-compiler" {>= "3.10.0"}
"libbinaryen" {>= "101.0.1" < "102.0.0"}
"libbinaryen" {>= "102.0.4" < "103.0.0"}
]