From b599542f7ce001e04cdff9db82b05fee96bb3332 Mon Sep 17 00:00:00 2001 From: Colin Ihrig Date: Sat, 13 Nov 2021 14:31:05 -0500 Subject: [PATCH] v0.0.12 Notable changes: - The project is now hosted under the nodejs GitHub org. (https://github.com/nodejs/uvwasi/commit/4911b557e864c875992a7776eb77a6fa12144521) - Several overflows have been fixed. (https://github.com/nodejs/uvwasi/pull/161) (https://github.com/nodejs/uvwasi/pull/162) - The libuv dependency has been updated to v1.42.0. (https://github.com/nodejs/uvwasi/pull/167) --- include/uvwasi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/uvwasi.h b/include/uvwasi.h index b899f6c..28d3856 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 11 +#define UVWASI_VERSION_PATCH 12 #define UVWASI_VERSION_HEX ((UVWASI_VERSION_MAJOR << 16) | \ (UVWASI_VERSION_MINOR << 8) | \ (UVWASI_VERSION_PATCH))