summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md12
-rw-r--r--CMakeLists.txt2
2 files changed, 10 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 13e84e8ff..c416f16bf 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -15,6 +15,9 @@ full changeset diff at the end of each section.
Current Trunk
-------------
+v113
+----
+
- Add a `wasm-merge` tool. This is a full rewrite of the previous `wasm-merge`
tool that was removed from the tree in the past. The new version is much
simpler after recent improvements to multi-memory and multi-table. The
@@ -22,9 +25,12 @@ Current Trunk
WasmGC.
- Some C and JS API functions now refer to data and element segments by name
instead of index.
-- The --nominal and --hybrid command line options and related API functions have
- been removed. The only supported type system is now the standard isorecursive
- (i.e. hybrid) type system.
+- The `--nominal` and `--hybrid` command line options and related API functions
+ have been removed. The only supported type system is now the standard
+ isorecursive (i.e. hybrid) type system. (#5672)
+- Add a "mayNotReturn" effect (#5711).
+- Disable the memory64 feature in Memory64Lowering.cpp (#5679).
+- Disable sign extension in SignExtLowering.cpp (#5676).
v112
----
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 699a765ce..ca8d44933 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 112)
+project(binaryen LANGUAGES C CXX VERSION 113)
include(GNUInstallDirs)
# The C++ standard whose features are required to build Binaryen.