diff options
-rw-r--r-- | CHANGELOG.md | 5 | ||||
-rw-r--r-- | CMakeLists.txt | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index beccb3e23..57e7272ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,9 @@ full changeset diff at the end of each section. Current Trunk ------------- +v114 +---- + - Fix a bug where e.g. -O3 -Oz ran the -O3 with the opt levels of -Oz, which could inhibit inlining, for example. While this is a bugfix, it affects how commandline options are interpreted, so if you depended on the old behavior @@ -22,6 +25,8 @@ Current Trunk first -O3 with -Oz's opt levels, and the new behavior is to run -O3 with the proper (-O3) opt levels. This is a followup to #5333 from a previous release. (#5787) +- Add pass to remove Exception Handling instructions (#5770). + v113 ---- diff --git a/CMakeLists.txt b/CMakeLists.txt index ca8d44933..8a008b514 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 113) +project(binaryen LANGUAGES C CXX VERSION 114) include(GNUInstallDirs) # The C++ standard whose features are required to build Binaryen. |