Bump version to 2.3.1 and update release notes (#4303)

This commit is contained in:
liang.he
2025-06-02 10:45:50 +08:00
committed by GitHub
parent 207da7b22f
commit 670aa83985
3 changed files with 34 additions and 2 deletions

View File

@ -1,3 +1,35 @@
## WAMR-2.3.1
### Breaking Changes
- Revert the location to install public headers (#4295). This restores compatibility (of installed headers) with WAMR-2.2.0 and earlier.
### New Features
- feat: Add instruction metering for interpreter (#4122)
### Bug Fixes
- updating WASI stdio handle initialization and build options for UVWASI (#4260)
- Fix SIMD load lane to avoid incompatible pointer types (#4278)
- Fixed unit tests on X86_32 (#4279)
- Improve Embedding WAMR guideline (#4284)
- Fix Compiler Error C2491 (#4286)
- Enhance type checking for function types in loader and improve error handling (#4294)
- Dockerfile.vx-delegate build error fix (#4273)
- Enable runtime API exposure for MSVC builds (#4287)
### Enhancements
- feat(yml): Add ESP32-P4 and ESP32-C5 support (#4270)
- add a sample to use cmake package (#4291)
### Others
- build(deps): Bump github/codeql-action from 3.28.17 to 3.28.18 (#4285)
---
## WAMR-2.3.0
### Breaking changes

View File

@ -8,7 +8,7 @@ endif()
set(WAMR_VERSION_MAJOR 2)
set(WAMR_VERSION_MINOR 3)
set(WAMR_VERSION_PATCH 0)
set(WAMR_VERSION_PATCH 1)
message("-- WAMR version: ${WAMR_VERSION_MAJOR}.${WAMR_VERSION_MINOR}.${WAMR_VERSION_PATCH}")

View File

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