Skip to content

Commit

Permalink
v0.0.19 (#230)
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
mhdawson authored Sep 13, 2023
1 parent 2c14ae9 commit 5ec8195
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
)

Expand Down
2 changes: 1 addition & 1 deletion include/uvwasi.h
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit 5ec8195

Please sign in to comment.