From bd916781568133800e4b3114bca7ffbce6e825df Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Sat, 16 Aug 2025 20:03:01 +0200 Subject: [PATCH 1/2] v0.0.22 --- include/uvwasi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/uvwasi.h b/include/uvwasi.h index 7dbcc66..117a945 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 21 +#define UVWASI_VERSION_PATCH 22 #define UVWASI_VERSION_HEX ((UVWASI_VERSION_MAJOR << 16) | \ (UVWASI_VERSION_MINOR << 8) | \ (UVWASI_VERSION_PATCH)) From 060a0ac062d78b21e01ed3d9b561fae36c7d686a Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Sat, 16 Aug 2025 20:03:26 +0200 Subject: [PATCH 2/2] Update CMakeLists.txt --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c78fdcd..34b2e27 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.21 + VERSION 0.0.22 LANGUAGES C )