diff --git a/CHANGELOG.md b/CHANGELOG.md index 04f4525ff4c..01791498a3f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,7 +14,13 @@ full changeset diff at the end of each section. Current Trunk ------------- -- Add support for non-nullable locals in wasm GC. + +v110 +---- + +- Add support for non-nullable locals in wasm GC. (#4959) +- Add support for multiple memories. (#4811) +- Add support for the wasm Strings proposal. (see PRs with [Strings] in name) - Add a new flag to Directize, `--pass-arg=directize-initial-contents-immutable` which indicates the initial table contents are immutable. That is the case for LLVM, for example, and it allows us to optimize more indirect calls to direct diff --git a/CMakeLists.txt b/CMakeLists.txt index f7dcd5d8038..8077a7c9c0b 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 109) +project(binaryen LANGUAGES C CXX VERSION 110) include(GNUInstallDirs) # The C++ standard whose features are required to build Binaryen.