diff options
author | Alon Zakai <azakai@google.com> | 2022-03-18 14:39:31 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-18 14:39:31 -0700 |
commit | 967245fbc75217d257eeba15ede4aeb56e3c0d89 (patch) | |
tree | 40d998ef535e6874e95bff54649cce4f166d5563 | |
parent | b7e1989553a645968399ad379a86b809e04c0ae2 (diff) | |
download | binaryen-967245fbc75217d257eeba15ede4aeb56e3c0d89.tar.gz binaryen-967245fbc75217d257eeba15ede4aeb56e3c0d89.tar.bz2 binaryen-967245fbc75217d257eeba15ede4aeb56e3c0d89.zip |
Version 106 (#4533)
-rw-r--r-- | CHANGELOG.md | 11 | ||||
-rw-r--r-- | CMakeLists.txt | 2 |
2 files changed, 11 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d2a59eaf..e9bb9cb9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,13 +15,22 @@ full changeset diff at the end of each section. Current Trunk ------------- +v106 +---- + +- [wasm2js] Support exports of Globals (#4523) +- MergeSimilarFunctions optimization pass (#4414) +- Various wasm-ctor-eval improvements, including support for GC. + v105 ---- +---- + - This release contains binaries for ARM64 MacOS devices (#4397) - Otherwise, mostly bug fixes and incremental optimization improvements. v104 ---- + - Bugfixes only, release created due to incorrect github release artifacts in v103 release (#4398). diff --git a/CMakeLists.txt b/CMakeLists.txt index bc51d7515..97a90f8f5 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 105) +project(binaryen LANGUAGES C CXX VERSION 106) include(GNUInstallDirs) # The C++ standard whose features are required to build Binaryen. |