Bump version to 2.4.1 (#4513)

This commit is contained in:
liang.he
2025-07-28 20:49:11 +08:00
committed by GitHub
parent d298a66d38
commit b124f70345
3 changed files with 37 additions and 2 deletions

View File

@ -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 ## WAMR-2.4.0
### Breaking Changes ### Breaking Changes

View File

@ -8,7 +8,7 @@ endif()
set(WAMR_VERSION_MAJOR 2) set(WAMR_VERSION_MAJOR 2)
set(WAMR_VERSION_MINOR 4) 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}") message("-- WAMR version: ${WAMR_VERSION_MAJOR}.${WAMR_VERSION_MINOR}.${WAMR_VERSION_PATCH}")

View File

@ -18,7 +18,7 @@
/* clang-format off */ /* clang-format off */
#define WAMR_VERSION_MAJOR 2 #define WAMR_VERSION_MAJOR 2
#define WAMR_VERSION_MINOR 4 #define WAMR_VERSION_MINOR 4
#define WAMR_VERSION_PATCH 0 #define WAMR_VERSION_PATCH 1
/* clang-format on */ /* clang-format on */
#endif #endif