summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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.