diff options
author | Thomas Lively <tlively@google.com> | 2022-11-18 07:29:40 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-18 07:29:40 -0800 |
commit | 66214bcaf00aecb4bb00af3fec3b59e717ad7927 (patch) | |
tree | b94b93d844661e0599da9febf5f710e18346bbd2 | |
parent | ff321938a450470a212dbe2add22eb3b8f9e7130 (diff) | |
download | binaryen-66214bcaf00aecb4bb00af3fec3b59e717ad7927.tar.gz binaryen-66214bcaf00aecb4bb00af3fec3b59e717ad7927.tar.bz2 binaryen-66214bcaf00aecb4bb00af3fec3b59e717ad7927.zip |
Release 111 (#5264)
-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 2c01e0aa0..b55e9ccf8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,9 @@ full changeset diff at the end of each section. Current Trunk ------------- +v111 +---- + - Add extra `memory64` argument for `BinaryenSetMemory` and new `BinaryenMemoryIs64` C-API method to determine 64-bit memory. (#4963) - `TypeBuilderSetSubType` now takes a supertype as the second argument. diff --git a/CMakeLists.txt b/CMakeLists.txt index d3b2f270c..3538a3bc3 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 110) +project(binaryen LANGUAGES C CXX VERSION 111) include(GNUInstallDirs) # The C++ standard whose features are required to build Binaryen. |