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 b177f6efc..e3ac9022a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,9 @@ full changeset diff at the end of each section. Current Trunk ------------- +v101 +---- + - `BinaryenSetFunctionTable` and `module.setFunctionTable` have been removed in favor of `BinaryenAddTable` and `module.addTable` respectively. - `BinaryenIsFunctionTableImported` is removed. diff --git a/CMakeLists.txt b/CMakeLists.txt index e2b9a396e..e3f3f87a4 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 100) +project(binaryen LANGUAGES C CXX VERSION 101) include(GNUInstallDirs) # The C++ standard whose features are required to build Binaryen. |