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
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,14 @@ full changeset diff at the end of each section.
Current Trunk
-------------

v125
----

- Add a ReorderTypes pass (#7879).
- C and JS APIs now assume RefFuncs are created after imported functions (non-
imported functions can still be created later). This is necessary because
imported function types can vary (due to Custom Descriptors), and we need to
look up that type at RefFunc creation time.
look up that type at RefFunc creation time. (#7993)
- The --mod-asyncify-never-unwind and --mod-asyncify-always-and-only-unwind
passed were deleted. They only existed to support the lazy code loading
support in emscripten that was removed. (#7893)
Expand All @@ -28,6 +32,8 @@ Current Trunk
call.without.effects (calls will no longer be assumed to be cheap enough to
run unconditionally) or monomorphize (which inputs a cost factor as a
number). (#8047)
- Cross-module fuzzing: Add support generate and fuzz two linked files (#7947,
#7949, etc.)

v124
----
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ cmake_minimum_required(VERSION 3.16.3)
# to reduce this for compatability with emsdk.
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.14" CACHE STRING "Minimum OS X deployment version")

project(binaryen LANGUAGES C CXX VERSION 124)
project(binaryen LANGUAGES C CXX VERSION 125)
include(GNUInstallDirs)

# The C++ standard whose features are required to build Binaryen.
Expand Down
Loading