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
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,21 @@ full changeset diff at the end of each section.
Current Trunk
-------------

v133
----

- Add a new `--constraint-analysis` pass which propagates logical facts along
branches. (#9010)
branches. The pass runs automatically in `-O3` and `-Os` and above. (#9010)
- Add an optional TailCall optimization pass (`--tail-call`). (#9103)
- Add an optional pass to remove empty function exports. (#9078)
- Replace the `BINARYEN_ROOT` environment variable (used by developers who are
doing out-of-tree builds of binaryen) with `BINARYEN_BIN` (#9023)
- Reject non-natural alignment for atomic memory operations at parse time (#8962)
- Note that fast-math mode can ignore the difference between negative zero and
zero (like clang and gcc). (#9056)
- [JS API] **(breaking)** Organize types into enums (#9098)
- [JS API] Organize types into enums (breaking change in JS API). (#9098)
- [JS API] Expose heap types `exn` & `noexn` (#9057)
- [JS API] Expose instructions `try_table` & `throw_ref` (#9057)

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should also add points landed in #9057:

- [JS API] expose heap types `exn` & `noexn` (#9057)
- [JS API] expose instructions `try_table` & `throw_ref` (#9057)

and equivalent C API points

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, added, those aren't breaking but definitely worth mentioning.

v132
----
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 132)
project(binaryen LANGUAGES C CXX VERSION 133)
include(GNUInstallDirs)

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