diff options
author | Alon Zakai <azakai@google.com> | 2018-10-11 16:36:31 -0700 |
---|---|---|
committer | Alon Zakai <azakai@google.com> | 2018-10-11 16:36:31 -0700 |
commit | f6162405686348cf6f0b032e6796b5b76f750abf (patch) | |
tree | 1aa229cfb8f2cc493c6950d2ad4a40e15d85aa1e | |
parent | 230b9cd7f96eb3d7e35f07d4bb6f029264e6543c (diff) | |
download | binaryen-f6162405686348cf6f0b032e6796b5b76f750abf.tar.gz binaryen-f6162405686348cf6f0b032e6796b5b76f750abf.tar.bz2 binaryen-f6162405686348cf6f0b032e6796b5b76f750abf.zip |
update list of breaking changes [ci skip]
-rw-r--r-- | CHANGELOG.md | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 3891c43ec..232a70552 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,7 +12,11 @@ full changeset diff at the end of each section. Current Trunk ------------- -### BREAKING CHANGES +### BREAKING CHANGES (old to new) + +- `BinaryenSetFunctionTable` in the C API no longer accepts an array of functions, instead it accepts an array of function names, `const char** funcNames`. Previously, you could not include imported functions because they are of type `BinaryenImportRef` instead of `BinaryenFunctionRef`. #1650 + +- `BinaryenSetFunctionTable` in the C API now expects the initial and maximum table size as additional parameters, like `BinaryenSetMemory` does for pages, so tables can be grown dynamically. #1687 + +- Add `shared` parameters to `BinaryenAddMemoryImport` and `BinaryenSetMemory`, to support a shared memory. #1686 -- `BinaryenSetFunctionTable` in the C API no longer accepts an array of functions, instead it accepts an array of function names, `const char** funcNames`. Previously, you could not include imported functions because they are of type `BinaryenImportRef` instead of `BinaryenFunctionRef`. [#1650](https://github.com/WebAssembly/binaryen/pull/1650) -- `BinaryenSetFunctionTable` in the C API now expects the initial and maximum table size as additional parameters, like `BinaryenSetMemory` does for pages, so tables can be grown dynamically. [#1687](https://github.com/WebAssembly/binaryen/pull/1687) |