diff options
-rw-r--r-- | CHANGELOG.md | 3 | ||||
-rw-r--r-- | CMakeLists.txt | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index cafdae444..fc63248f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,9 @@ full changeset diff at the end of each section. Current Trunk ------------- +v100 +---- + - `wasm-dis` now supports options to enable or disable Wasm features. - Reference types support has been improved by allowing multiple tables in a module. diff --git a/CMakeLists.txt b/CMakeLists.txt index 818515972..9c50ddc11 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ # Version set according the the cmake versions available in Ubuntu/Bionic: # https://packages.ubuntu.com/bionic/cmake cmake_minimum_required(VERSION 3.10.2) -project(binaryen LANGUAGES C CXX VERSION 99) +project(binaryen LANGUAGES C CXX VERSION 100) include(GNUInstallDirs) # The C++ standard whose features are required to build Binaryen. |