diff options
-rw-r--r-- | CHANGELOG.md | 6 | ||||
-rw-r--r-- | CMakeLists.txt | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 24ce7693f..9d4150514 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,9 @@ full changeset diff at the end of each section. Current Trunk ------------- +v119 +---- + - Passes can now receive individual pass arguments, that is --foo=A --foo=B for a pass foo will run the pass twice (which was possible before) and will now run it first with argument A and second with B. --pass-arg=foo@BAR will now @@ -31,6 +34,9 @@ Current Trunk - Allow using `--skip-pass` on the commandline multiple times (#6714). - The instructions relaxed_fma and relaxed_fnma have been renamed to relaxed_madd and relaxed_nmadd. + - Add a new `--heap-store-optimization` pass. (#6882) + - Add a pass for minimizing recursion groups. (#6832) + v118 ---- diff --git a/CMakeLists.txt b/CMakeLists.txt index 94224299c..bd24a80a3 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 118) +project(binaryen LANGUAGES C CXX VERSION 119) include(GNUInstallDirs) # The C++ standard whose features are required to build Binaryen. |