Skip to content

Bump version to 2.4.1 #4513

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 28, 2025
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
35 changes: 35 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@
## WAMR-2.4.1

### Breaking Changes

- wasi_socket_ext.c: fix error reporting (#4476)
- lib-socket: make getaddrinfo return EAI\_ values (#4498)
- bump AOT_CURRENT_VERSION for extended-const (#4511)

### New Features

### Bug Fixes

- modify macro related to simde when WASM_OP_SELECT_128 (#4461)
- posix os_socket_accept: stop assuming socklen_t is unsigned int (#4488)
- wasi_socket_ext.c: fix the number of getaddrinfo results (#4466)
- Fix typos (#4472)
- fix regression running_config.json (#4477)
- posix os_socket_addr_resolve: relax compatibility check (#4469)
- Add validation for recursive type count in loader (#4440)

### Enhancements

- Add CI on Zephyr (#4336)
- introduce wasm_runtime_instantiate_ex2 (#4444)
- Add a CLI option to specify shared heap size on Windows platform (#4503)
- wasi-nn: add a comment on load_by_name_with_config (#4492)
- nn-cli: add an option to use load_by_name (#4490)
- wamr-wasi-extensions: document (#4493)
- doc/socket_api.md: some historical notes (#4494)
- lib-socket: implement getsockopt(SOL_SOCKET,SO_TYPE) (#4458)

### Others

- build(deps): Bump github/codeql-action from 3.29.2 to 3.29.3 (#4507)

## WAMR-2.4.0

### Breaking Changes
Expand Down
2 changes: 1 addition & 1 deletion build-scripts/version.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ endif()

set(WAMR_VERSION_MAJOR 2)
set(WAMR_VERSION_MINOR 4)
set(WAMR_VERSION_PATCH 0)
set(WAMR_VERSION_PATCH 1)

message("-- WAMR version: ${WAMR_VERSION_MAJOR}.${WAMR_VERSION_MINOR}.${WAMR_VERSION_PATCH}")

Expand Down
2 changes: 1 addition & 1 deletion core/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/* clang-format off */
#define WAMR_VERSION_MAJOR 2
#define WAMR_VERSION_MINOR 4
#define WAMR_VERSION_PATCH 0
#define WAMR_VERSION_PATCH 1
/* clang-format on */

#endif
Loading