@grain/binaryen.ml 0.29.0 → 0.31.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- binaryen-archive/CHANGELOG.md +22 -0
- binaryen-archive/binaryen.opam +2 -2
- binaryen-archive/dune +1 -1
- binaryen-archive/esy.lock/index.json +384 -68
- binaryen-archive/package.json +2 -2
- binaryen-archive/src/expression.c +3 -4
- binaryen-archive/src/expression.js +2 -2
- binaryen-archive/src/expression.ml +13 -6
- binaryen-archive/src/import.ml +8 -4
- binaryen-archive/src/memory.ml +2 -1
- binaryen-archive/src/module.c +0 -8
- binaryen-archive/src/module.js +0 -5
- binaryen-archive/src/module.ml +0 -2
- binaryen-archive/src/module.mli +0 -1
- binaryen-archive/src/passes.ml +31 -15
- binaryen-archive/src/passes.mli +29 -14
binaryen-archive/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.31.0](https://github.com/grain-lang/binaryen.ml/compare/v0.30.0...v0.31.0) (2025-11-02)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### ⚠ BREAKING CHANGES
|
|
7
|
+
|
|
8
|
+
* Upgrade to Binaryen v121 ([#207](https://github.com/grain-lang/binaryen.ml/issues/207))
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* Upgrade to Binaryen v121 ([#207](https://github.com/grain-lang/binaryen.ml/issues/207)) ([7e51d5d](https://github.com/grain-lang/binaryen.ml/commit/7e51d5da5bd2336dd0122468bcc1e3030e13f86c))
|
|
13
|
+
|
|
14
|
+
## [0.30.0](https://github.com/grain-lang/binaryen.ml/compare/v0.29.0...v0.30.0) (2025-11-02)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### ⚠ BREAKING CHANGES
|
|
18
|
+
|
|
19
|
+
* Upgrade to Binaryen v120 ([#206](https://github.com/grain-lang/binaryen.ml/issues/206))
|
|
20
|
+
|
|
21
|
+
### Features
|
|
22
|
+
|
|
23
|
+
* Upgrade to Binaryen v120 ([#206](https://github.com/grain-lang/binaryen.ml/issues/206)) ([4d69831](https://github.com/grain-lang/binaryen.ml/commit/4d6983154c19140af2ab2ac4451c5b69f0f2a736))
|
|
24
|
+
|
|
3
25
|
## [0.29.0](https://github.com/grain-lang/binaryen.ml/compare/v0.28.0...v0.29.0) (2025-11-01)
|
|
4
26
|
|
|
5
27
|
|
binaryen-archive/binaryen.opam
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
opam-version: "2.0"
|
|
2
|
-
version: "0.
|
|
2
|
+
version: "0.31.0"
|
|
3
3
|
synopsis: "OCaml bindings for Binaryen"
|
|
4
4
|
maintainer: "oscar@grain-lang.org"
|
|
5
5
|
author: "Oscar Spencer"
|
|
@@ -16,6 +16,6 @@ depends: [
|
|
|
16
16
|
"dune" {>= "3.0.0"}
|
|
17
17
|
"dune-configurator" {>= "3.0.0"}
|
|
18
18
|
"js_of_ocaml-compiler" {>= "6.0.0" < "7.0.0"}
|
|
19
|
-
"libbinaryen" {> "
|
|
19
|
+
"libbinaryen" {> "121.0.0" < "122.0.0"}
|
|
20
20
|
]
|
|
21
21
|
x-maintenance-intent: ["0.(latest)"]
|
binaryen-archive/dune
CHANGED