File tree Expand file tree Collapse file tree 3 files changed +37
-2
lines changed Expand file tree Collapse file tree 3 files changed +37
-2
lines changed Original file line number Diff line number Diff line change
1
+ ## WAMR-2.4.1
2
+
3
+ ### Breaking Changes
4
+
5
+ - wasi_socket_ext.c: fix error reporting (#4476 )
6
+ - lib-socket: make getaddrinfo return EAI\_ values (#4498 )
7
+ - bump AOT_CURRENT_VERSION for extended-const (#4511 )
8
+
9
+ ### New Features
10
+
11
+ ### Bug Fixes
12
+
13
+ - modify macro related to simde when WASM_OP_SELECT_128 (#4461 )
14
+ - posix os_socket_accept: stop assuming socklen_t is unsigned int (#4488 )
15
+ - wasi_socket_ext.c: fix the number of getaddrinfo results (#4466 )
16
+ - Fix typos (#4472 )
17
+ - fix regression running_config.json (#4477 )
18
+ - posix os_socket_addr_resolve: relax compatibility check (#4469 )
19
+ - Add validation for recursive type count in loader (#4440 )
20
+
21
+ ### Enhancements
22
+
23
+ - Add CI on Zephyr (#4336 )
24
+ - introduce wasm_runtime_instantiate_ex2 (#4444 )
25
+ - Add a CLI option to specify shared heap size on Windows platform (#4503 )
26
+ - wasi-nn: add a comment on load_by_name_with_config (#4492 )
27
+ - nn-cli: add an option to use load_by_name (#4490 )
28
+ - wamr-wasi-extensions: document (#4493 )
29
+ - doc/socket_api.md: some historical notes (#4494 )
30
+ - lib-socket: implement getsockopt(SOL_SOCKET,SO_TYPE) (#4458 )
31
+
32
+ ### Others
33
+
34
+ - build(deps): Bump github/codeql-action from 3.29.2 to 3.29.3 (#4507 )
35
+
1
36
## WAMR-2.4.0
2
37
3
38
### Breaking Changes
Original file line number Diff line number Diff line change 8
8
9
9
set (WAMR_VERSION_MAJOR 2 )
10
10
set (WAMR_VERSION_MINOR 4 )
11
- set (WAMR_VERSION_PATCH 0 )
11
+ set (WAMR_VERSION_PATCH 1 )
12
12
13
13
message ("-- WAMR version: ${WAMR_VERSION_MAJOR} .${WAMR_VERSION_MINOR} .${WAMR_VERSION_PATCH} " )
14
14
Original file line number Diff line number Diff line change 18
18
/* clang-format off */
19
19
#define WAMR_VERSION_MAJOR 2
20
20
#define WAMR_VERSION_MINOR 4
21
- #define WAMR_VERSION_PATCH 0
21
+ #define WAMR_VERSION_PATCH 1
22
22
/* clang-format on */
23
23
24
24
#endif
You can’t perform that action at this time.
0 commit comments