diff options
-rw-r--r-- | CHANGELOG.md | 5 | ||||
-rw-r--r-- | CMakeLists.txt | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 47b8798cf..590d756fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,10 @@ full changeset diff at the end of each section. Current Trunk ------------- + +v97 +--- + - Remove asm2wasm, which supported Emscripten's fastcomp backend, after fastcomp was removed. - The new feature flag `--enable-anyref` enables just the `anyref` type incl. @@ -26,6 +30,7 @@ Current Trunk v96 --- + - Fuzzing: Compare wasm2js to the interpreter (#3026) - Fix CountLeadingZeroes on MSVC, which lead to bad optimizations (#3028) - Asyncify verbose option (#3022) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2c24543be..9b8bac04d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.1.3) -project(binaryen LANGUAGES C CXX VERSION 96) +project(binaryen LANGUAGES C CXX VERSION 97) include(GNUInstallDirs) # The C++ standard whose features are required to build Binaryen. |