From 02a7e485a50c61af7d79d4a55a4a2d042e5c1c1c Mon Sep 17 00:00:00 2001 From: cjihrig Date: Fri, 16 Dec 2022 17:47:01 -0500 Subject: [PATCH] v0.0.14 Notable changes: - Windows applications not in ConsoleMode now properly guess handle types for FILE_TYPE_CHAR file types which cannot be stat'ed. (https://github.com/nodejs/uvwasi/commit/6485e16c1b980df2a74e37c9a429c2e768684906) - The UVWASI_DEBUG macro can now be used without a format string. (https://github.com/nodejs/uvwasi/commit/c5b979dc5da948d989614f623878aa32251d58e7) - The libuv dependency has been updated to v1.44.2. (https://github.com/nodejs/uvwasi/commit/a1860355aaa3d14174c48feb933c270d8a872f93) --- include/uvwasi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/uvwasi.h b/include/uvwasi.h index b45f80b..7fceca3 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 13 +#define UVWASI_VERSION_PATCH 14 #define UVWASI_VERSION_HEX ((UVWASI_VERSION_MAJOR << 16) | \ (UVWASI_VERSION_MINOR << 8) | \ (UVWASI_VERSION_PATCH))