Skip to content

Commit e76edba

Browse files
authored
v0.0.23 (#312)
Notable changes: - fix: add missing exports (#311) (a7f7156)
1 parent a7f7156 commit e76edba

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

0 commit comments

Comments
 (0)