We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38d124c commit 83dd1fcCopy full SHA for 83dd1fc
CMakeLists.txt
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.11)
2
project (
3
uvwasi
4
DESCRIPTION "WASI syscall API built atop libuv"
5
- VERSION 0.0.20
+ VERSION 0.0.21
6
LANGUAGES C
7
)
8
include/uvwasi.h
@@ -11,7 +11,7 @@ extern "C" {
11
12
#define UVWASI_VERSION_MAJOR 0
13
#define UVWASI_VERSION_MINOR 0
14
-#define UVWASI_VERSION_PATCH 20
+#define UVWASI_VERSION_PATCH 21
15
#define UVWASI_VERSION_HEX ((UVWASI_VERSION_MAJOR << 16) | \
16
(UVWASI_VERSION_MINOR << 8) | \
17
(UVWASI_VERSION_PATCH))
0 commit comments