From 1fb1a2e2970472e9e93f9de94c8a2c674d0a0581 Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Wed, 28 Jun 2023 13:02:24 -0700 Subject: [PATCH] version_114 (#5789) --- CHANGELOG.md | 5 +++++ CMakeLists.txt | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index beccb3e2324..57e7272baea 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 ca8d4493358..8a008b5146a 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.