Skip to content
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
16 changes: 16 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## WAMR-2.4.3

### Breaking Changes

### New Features

### Bug Fixes

- libc-wasi: add missing pointer validations to socket functions (#4611) (#4665)

### Enhancements

### Others

---

## WAMR-2.4.2

### 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 2)
set(WAMR_VERSION_PATCH 3)

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 2
#define WAMR_VERSION_PATCH 3
/* clang-format on */

#endif
Loading