From b124f70345d712bead5c0c2393acb2dc583511de Mon Sep 17 00:00:00 2001 From: "liang.he" Date: Mon, 28 Jul 2025 20:49:11 +0800 Subject: [PATCH] Bump version to 2.4.1 (#4513) --- RELEASE_NOTES.md | 35 +++++++++++++++++++++++++++++++++++ build-scripts/version.cmake | 2 +- core/version.h | 2 +- 3 files changed, 37 insertions(+), 2 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index eb11a7183..4904d3949 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -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 diff --git a/build-scripts/version.cmake b/build-scripts/version.cmake index 3757c472f..637b3ba7b 100644 --- a/build-scripts/version.cmake +++ b/build-scripts/version.cmake @@ -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}") diff --git a/core/version.h b/core/version.h index 1f0fdb0b2..261c9b8cf 100644 --- a/core/version.h +++ b/core/version.h @@ -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