diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d76e192370..2512e10c673 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) @@ -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 ---- diff --git a/CMakeLists.txt b/CMakeLists.txt index 78228790864..c01472a475a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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.