Skip to content

Commit 5ec8195

Browse files
authored
v0.0.19 (#230)
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 <[email protected]>
1 parent 2c14ae9 commit 5ec8195

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.11)
22
project (
33
uvwasi
44
DESCRIPTION "WASI syscall API built atop libuv"
5-
VERSION 0.0.18
5+
VERSION 0.0.19
66
LANGUAGES C
77
)
88

include/uvwasi.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ extern "C" {
1111

1212
#define UVWASI_VERSION_MAJOR 0
1313
#define UVWASI_VERSION_MINOR 0
14-
#define UVWASI_VERSION_PATCH 18
14+
#define UVWASI_VERSION_PATCH 19
1515
#define UVWASI_VERSION_HEX ((UVWASI_VERSION_MAJOR << 16) | \
1616
(UVWASI_VERSION_MINOR << 8) | \
1717
(UVWASI_VERSION_PATCH))

0 commit comments

Comments
 (0)