From 93030cadaf93ba015fe58c4d1037de7846bfc8e3 Mon Sep 17 00:00:00 2001 From: cjihrig Date: Sun, 2 Aug 2020 16:37:58 -0400 Subject: [PATCH] v0.0.10 Notable changes: - The uvwasi_preopen_t now uses const char* for the mapped_path and real_path fields. Previously, these were not const. (https://github.com/cjihrig/uvwasi/pull/130) - uvwasi_path_filestat_get() now properly handles the UVWASI_LOOKUP_SYMLINK_FOLLOW flag. (https://github.com/cjihrig/uvwasi/pull/133) - uvwasi_options_init() has been added to reduce the boilerplate code associated with initializing uvwasi_options_t's. (https://github.com/cjihrig/uvwasi/pull/141) - The DEBUG() macro has been renamed to UVWASI_DEBUG() to reduce naming conflicts with other projects. (https://github.com/cjihrig/uvwasi/pull/143) - A compilation error on NetBSD 8.2 has been fixed. (https://github.com/cjihrig/uvwasi/pull/146) - The uvwasi_fd_filestat_set_times() and uvwasi_path_filestat_set_times() functions now have proper implementations. (https://github.com/cjihrig/uvwasi/pull/139) --- include/uvwasi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/uvwasi.h b/include/uvwasi.h index b2b2672..9a0f8aa 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 9 +#define UVWASI_VERSION_PATCH 10 #define UVWASI_VERSION_HEX ((UVWASI_VERSION_MAJOR << 16) | \ (UVWASI_VERSION_MINOR << 8) | \ (UVWASI_VERSION_PATCH))