From 7dffc6b19d14aea8d63e13c49163021ec8822cee Mon Sep 17 00:00:00 2001 From: cjihrig Date: Thu, 18 May 2023 22:12:48 -0400 Subject: [PATCH] v0.0.18 Notable changes: - Define S_ISFIFO macro to support new versions of libuv. (https://github.com/nodejs/uvwasi/commit/405810262ee0292d5df15fb39ab55b90f9cdc821) --- include/uvwasi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/uvwasi.h b/include/uvwasi.h index aee6b4d..d475d3e 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 17 +#define UVWASI_VERSION_PATCH 18 #define UVWASI_VERSION_HEX ((UVWASI_VERSION_MAJOR << 16) | \ (UVWASI_VERSION_MINOR << 8) | \ (UVWASI_VERSION_PATCH))