From bb2255ae3c5f7009a846c0053617b1921efcf5db Mon Sep 17 00:00:00 2001 From: cjihrig Date: Mon, 5 Sep 2022 13:16:46 -0400 Subject: [PATCH] v0.0.13 Notable changes: - A bug has been fixed in uvwasi_fd_readdir() that caused the number of entries to be processed incorrectly. (https://github.com/nodejs/uvwasi/commit/92caba8e0efd373f1bb8aebc8b1ab05ba6b5bba2) --- include/uvwasi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/uvwasi.h b/include/uvwasi.h index 28d3856..b45f80b 100644 --- a/include/uvwasi.h +++ b/include/uvwasi.h @@ -10,7 +10,7 @@ extern "C" { #define UVWASI_VERSION_MAJOR 0 #define UVWASI_VERSION_MINOR 0 -#define UVWASI_VERSION_PATCH 12 +#define UVWASI_VERSION_PATCH 13 #define UVWASI_VERSION_HEX ((UVWASI_VERSION_MAJOR << 16) | \ (UVWASI_VERSION_MINOR << 8) | \ (UVWASI_VERSION_PATCH))