summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2023-02-10 10:04:55 -0800
committerGitHub <noreply@github.com>2023-02-10 10:04:55 -0800
commit728b37cbe95ca8ea8cfba9ebc70e3fcb14db273a (patch)
tree3c34a2176521473ebe85a3dbb83c56bdcf40b014
parentb291900ec5448f6eaf04076586a64e4cbc6a0e02 (diff)
downloadbinaryen-728b37cbe95ca8ea8cfba9ebc70e3fcb14db273a.tar.gz
binaryen-728b37cbe95ca8ea8cfba9ebc70e3fcb14db273a.tar.bz2
binaryen-728b37cbe95ca8ea8cfba9ebc70e3fcb14db273a.zip
Release 112 (#5486)
-rw-r--r--CHANGELOG.md7
-rw-r--r--CMakeLists.txt2
2 files changed, 8 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ff494961f..6e9359e91 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -15,6 +15,13 @@ full changeset diff at the end of each section.
Current Trunk
-------------
+v112
+----
+
+- Add AbstractTypeRefining pass (#5461)
+- Add a mechanism to skip a pass by name (#5448)
+- Add TypeMerging pass (#5321)
+- Add TypeSSA pass (#5299)
- Optimization sequences like `-O3 -Os` now do the expected thing and run `-O3`
followed by `-Os`. Previously the last of them set the defaults that were used
by all executions, so `-O3 -Os` was equivalent to `-Os -Os`. (There is no
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 3f3c8fb0e..4b4a5471c 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 111)
+project(binaryen LANGUAGES C CXX VERSION 112)
include(GNUInstallDirs)
# The C++ standard whose features are required to build Binaryen.