diff options
-rw-r--r-- | CHANGELOG.md | 8 | ||||
-rw-r--r-- | CMakeLists.txt | 2 |
2 files changed, 8 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 04f4525ff..01791498a 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 f7dcd5d80..8077a7c9c 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. |