From 76834b5726bffa83c15578c375a6d0d368a38899 Mon Sep 17 00:00:00 2001 From: Michael Dawson Date: Wed, 13 Sep 2023 13:26:52 -0400 Subject: [PATCH] v0.0.19 Notable changes: - Add implementation for wasi docket functions - Fix windows testing to avoid intermittent failures and hangs on failures - Add install targets for uvwasi. This makes it possible for pkg-config or cmake build pipelines to discover globally installed uvwasi. Signed-off-by: Michael Dawson --- CMakeLists.txt | 2 +- include/uvwasi.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index bc58117..1fe0e2b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.11) project ( uvwasi DESCRIPTION "WASI syscall API built atop libuv" - VERSION 0.0.18 + VERSION 0.0.19 LANGUAGES C ) diff --git a/include/uvwasi.h b/include/uvwasi.h index ea997bb..a458cfe 100644 --- a/include/uvwasi.h +++ b/include/uvwasi.h @@ -11,7 +11,7 @@ extern "C" { #define UVWASI_VERSION_MAJOR 0 #define UVWASI_VERSION_MINOR 0 -#define UVWASI_VERSION_PATCH 18 +#define UVWASI_VERSION_PATCH 19 #define UVWASI_VERSION_HEX ((UVWASI_VERSION_MAJOR << 16) | \ (UVWASI_VERSION_MINOR << 8) | \ (UVWASI_VERSION_PATCH))