diff options
-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. |