Skip to content

Commit 83dd1fc

Browse files
authored
v0.0.21 (#264)
Notable changes - No-op instead of error on empty read/write (81ac54a) Signed-off-by: Michael Dawson <[email protected]>
1 parent 38d124c commit 83dd1fc

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.20
5+
VERSION 0.0.21
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 20
14+
#define UVWASI_VERSION_PATCH 21
1515
#define UVWASI_VERSION_HEX ((UVWASI_VERSION_MAJOR << 16) | \
1616
(UVWASI_VERSION_MINOR << 8) | \
1717
(UVWASI_VERSION_PATCH))

0 commit comments

Comments
 (0)