Skip to content

Commit b124f70

Browse files
authored
Bump version to 2.4.1 (#4513)
1 parent d298a66 commit b124f70

File tree

3 files changed

+37
-2
lines changed

3 files changed

+37
-2
lines changed

RELEASE_NOTES.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,38 @@
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+
136
## WAMR-2.4.0
237

338
### Breaking Changes

build-scripts/version.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ endif()
88

99
set(WAMR_VERSION_MAJOR 2)
1010
set(WAMR_VERSION_MINOR 4)
11-
set(WAMR_VERSION_PATCH 0)
11+
set(WAMR_VERSION_PATCH 1)
1212

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

core/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
/* clang-format off */
1919
#define WAMR_VERSION_MAJOR 2
2020
#define WAMR_VERSION_MINOR 4
21-
#define WAMR_VERSION_PATCH 0
21+
#define WAMR_VERSION_PATCH 1
2222
/* clang-format on */
2323

2424
#endif

0 commit comments

Comments
 (0)