Skip to content

Commit 670aa83

Browse files
authored
Bump version to 2.3.1 and update release notes (#4303)
1 parent 207da7b commit 670aa83

File tree

3 files changed

+34
-2
lines changed

3 files changed

+34
-2
lines changed

RELEASE_NOTES.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
1+
## WAMR-2.3.1
2+
3+
### Breaking Changes
4+
5+
- Revert the location to install public headers (#4295). This restores compatibility (of installed headers) with WAMR-2.2.0 and earlier.
6+
7+
### New Features
8+
9+
- feat: Add instruction metering for interpreter (#4122)
10+
11+
### Bug Fixes
12+
13+
- updating WASI stdio handle initialization and build options for UVWASI (#4260)
14+
- Fix SIMD load lane to avoid incompatible pointer types (#4278)
15+
- Fixed unit tests on X86_32 (#4279)
16+
- Improve Embedding WAMR guideline (#4284)
17+
- Fix Compiler Error C2491 (#4286)
18+
- Enhance type checking for function types in loader and improve error handling (#4294)
19+
- Dockerfile.vx-delegate build error fix (#4273)
20+
- Enable runtime API exposure for MSVC builds (#4287)
21+
22+
### Enhancements
23+
24+
- feat(yml): Add ESP32-P4 and ESP32-C5 support (#4270)
25+
- add a sample to use cmake package (#4291)
26+
27+
### Others
28+
29+
- build(deps): Bump github/codeql-action from 3.28.17 to 3.28.18 (#4285)
30+
31+
---
32+
133
## WAMR-2.3.0
234

335
### 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 3)
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 3
21-
#define WAMR_VERSION_PATCH 0
21+
#define WAMR_VERSION_PATCH 1
2222
/* clang-format on */
2323

2424
#endif

0 commit comments

Comments
 (0)