Skip to content

Commit

Permalink
version_114 (#5789)
Browse files Browse the repository at this point in the history
  • Loading branch information
kripken committed Jun 28, 2023
1 parent aaf1dac commit 1fb1a2e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,18 @@ 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
this may be a breaking change. That is, the old behavior made -O3 -Oz run the
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
----
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 1fb1a2e

Please sign in to comment.