diff options
-rw-r--r-- | CHANGELOG.md | 11 | ||||
-rw-r--r-- | CMakeLists.txt | 2 |
2 files changed, 12 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index ddfc17304..a1dbd4591 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,8 +15,19 @@ full changeset diff at the end of each section. Current Trunk ------------- +v120 +---- + + - Remove closed world validation checks. These checks were causing more harm + than good. All valid code will now validate with `--closed-world` (but also + it now provides fewer warnings to users that enable closed world on code + which does not conform to the requirements of that mode, which can lead to + changes in runtime behavior; for the long-term plans, see #6965). (#7019) - Many compile time speedups were implemented (2x overall improvement), see https://github.com/WebAssembly/binaryen/issues/4165#issuecomment-2372548271 + - Several `exnref` (newest version of Wasm EH) optimizations: #7013, #6996, + #6997, #6983, #6980 + - Source Maps: Support 5 segment mappings. (#6795) - [wasm-split] Add a multi-split mode. (#6943) - Add a `--preserve-type-order` option that minimizes text format changes in type ordering. (#6916) diff --git a/CMakeLists.txt b/CMakeLists.txt index bd24a80a3..ed6af9394 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ cmake_minimum_required(VERSION 3.10.2) # 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 119) +project(binaryen LANGUAGES C CXX VERSION 120) include(GNUInstallDirs) # The C++ standard whose features are required to build Binaryen. |