Skip to content

Commit 2d0c0d0

Browse files
authored
v0.0.20 (#244)
Notable changes - Improve consistency with other WASM runtimes - Forbid fd_advise on directories (dc2cbab) - Error on ambiguous fstflags (ff7e84f) - fix: resolving relative paths in symlinks (0427f19) - Clarify limitations on implementation.md (1da5f32) Signed-off-by: Michael Dawson <[email protected]>
1 parent 0dea67b commit 2d0c0d0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.11)
22
project (
33
uvwasi
44
DESCRIPTION "WASI syscall API built atop libuv"
5-
VERSION 0.0.19
5+
VERSION 0.0.20
66
LANGUAGES C
77
)
88

include/uvwasi.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ extern "C" {
1111

1212
#define UVWASI_VERSION_MAJOR 0
1313
#define UVWASI_VERSION_MINOR 0
14-
#define UVWASI_VERSION_PATCH 19
14+
#define UVWASI_VERSION_PATCH 20
1515
#define UVWASI_VERSION_HEX ((UVWASI_VERSION_MAJOR << 16) | \
1616
(UVWASI_VERSION_MINOR << 8) | \
1717
(UVWASI_VERSION_PATCH))

0 commit comments

Comments
 (0)