Skip to content

Commit

Permalink
v0.0.21 (#264)
Browse files Browse the repository at this point in the history
Notable changes

- No-op instead of error on empty read/write
  (81ac54a)

Signed-off-by: Michael Dawson <[email protected]>
  • Loading branch information
mhdawson authored May 2, 2024
1 parent 38d124c commit 83dd1fc
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.20
VERSION 0.0.21
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 20
#define UVWASI_VERSION_PATCH 21
#define UVWASI_VERSION_HEX ((UVWASI_VERSION_MAJOR << 16) | \
(UVWASI_VERSION_MINOR << 8) | \
(UVWASI_VERSION_PATCH))
Expand Down

0 comments on commit 83dd1fc

Please sign in to comment.