Skip to content

Commit 5d704ad

Browse files
authored
Version 130 (#8793)
1 parent 806fab6 commit 5d704ad

2 files changed

Lines changed: 12 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,23 +15,31 @@ full changeset diff at the end of each section.
1515
Current Trunk
1616
-------------
1717

18-
- Rename relaxed SIMD instructions to prepend the `relaxed_` prefix.
18+
v130
19+
----
20+
21+
- MarkJSCalled pass, to help configureAll users. (#8733)
22+
- RemoveExports pass, to allow easy export removal (e.g. after merge) (#8670)
23+
- Wide Arithmetic support (#8544)
24+
- New fuzzer mode: PreserveImportsExportsJS (#8592)
25+
- New fuzzer mode: Fuzz against JavaScript (#8655)
26+
- Increase Alpine stack size to 8MB for release builds (#8595)
27+
- Rename relaxed SIMD instructions to prepend the `relaxed_` prefix. (#8673)
1928
- Rename C and JS API operations to prepend the `Relaxed` prefix:
2029
- `LaneselectI8x16` to `RelaxedLaneselectI8x16`
2130
- `LaneselectI16x8` to `RelaxedLaneselectI16x8`
2231
- `LaneselectI32x4` to `RelaxedLaneselectI32x4`
2332
- `LaneselectI64x2` to `RelaxedLaneselectI64x2`
2433
- `DotI8x16I7x16AddSToVecI32x4` to `RelaxedDotI8x16I7x16AddSToVecI32x4`
2534
- `DotI8x16I7x16SToVecI16x8` to `RelaxedDotI8x16I7x16SToVecI16x8`
26-
- Rename `MemorySegment` functions to `DataSegment` in the c and js apis
35+
- [JS & C API] Rename MemorySegment functions to DataSegment (#8576)
2736
- Rename `BinaryenGetNumMemorySegments` to `BinaryenGetNumDataSegments` in c api.
2837
- Rename `BinaryenGetMemorySegmentByteOffset` to `BinaryenGetDataSegmentByteOffset` in c api.
2938
- Rename `BinaryenGetMemorySegmentByteLength` to `BinaryenGetDataSegmentByteLength` in c api.
3039
- Rename `BinaryenGetMemorySegmentPassive` to `BinaryenGetDataSegmentPassive` in c api.
3140
- Rename `BinaryenCopyMemorySegmentData` to `BinaryenCopyDataSegmentData` in c api.
3241
- Rename `module.getNumMemorySegments` to `module.getNumDataSegments` in js api.
3342
- Rename `module.getMemorySegmentInfo` to `module.getDataSegmentInfo` in js api.
34-
- Add C and JS APIs for the Wide Arithmetic proposal (#8660).
3543

3644
v129
3745
----

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.16.3)
55
# Needed for C++17 (std::path)
66
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.15" CACHE STRING "Minimum OS X deployment version")
77

8-
project(binaryen LANGUAGES C CXX VERSION 129)
8+
project(binaryen LANGUAGES C CXX VERSION 130)
99
include(GNUInstallDirs)
1010

1111
# The C++ standard whose features are required to build Binaryen.

0 commit comments

Comments
 (0)