Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,16 @@ full changeset diff at the end of each section.
Current Trunk
-------------

v131
----

- [Intrinsics] Add @binaryen.inline, parallel to @metadata.code.inline (#8820)
- Add acqrel ordering support for atomic fences (#8845). Breaks the C API;
`BinaryenAtomicFence` now takes a memory order param. Use
`BinaryenMemoryOrderSeqCst()` to preserve the original behavior.
- [JS API] Merge `Module['parseTextWithFeatures']` into `Module['parseText']`
(#8901)
- Add a ConstraintAnalysis pass (#8853)

v130
----
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.16.3)
# Needed for C++17 (std::path)
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.15" CACHE STRING "Minimum OS X deployment version")

project(binaryen LANGUAGES C CXX VERSION 130)
project(binaryen LANGUAGES C CXX VERSION 131)
include(GNUInstallDirs)

# The C++ standard whose features are required to build Binaryen.
Expand Down
Loading