From 7088743df29986e6fdbef3d415f7458095681a03 Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Wed, 31 Aug 2022 09:35:01 -0700 Subject: [PATCH 1/3] Prepare to release v110 --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 04f4525ff4c..37122be45ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,7 +14,11 @@ 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 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 From 7d142ff48e004ef9effaaef761dc0681662122c1 Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Wed, 31 Aug 2022 09:38:39 -0700 Subject: [PATCH 2/3] more notes --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 37122be45ef..01791498a3f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,8 @@ 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 From 6144fa02c6c03076fa0b6d8898888990ca8dd61e Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Wed, 31 Aug 2022 09:39:10 -0700 Subject: [PATCH 3/3] bump --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.