Skip to content

Commit

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

- Improve consistency with other WASM runtimes
  - Forbid fd_advise on directories
    (dc2cbab)
  - Error on ambiguous fstflags
    (ff7e84f)
  - fix: resolving relative paths in symlinks
    (0427f19)

- Clarify limitations on implementation.md
  (1da5f32)

Signed-off-by: Michael Dawson <midawson@redhat.com>
  • Loading branch information
mhdawson committed Dec 14, 2023
1 parent 0dea67b commit 2d0c0d0
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.19
VERSION 0.0.20
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 19
#define UVWASI_VERSION_PATCH 20
#define UVWASI_VERSION_HEX ((UVWASI_VERSION_MAJOR << 16) | \
(UVWASI_VERSION_MINOR << 8) | \
(UVWASI_VERSION_PATCH))
Expand Down

0 comments on commit 2d0c0d0

Please sign in to comment.