Skip to content

Commit

Permalink
v0.0.9
Browse files Browse the repository at this point in the history
Notable changes:

- A DEBUG() macro and UVWASI_DEBUG_LOG build option have been
  added to improve debugging.
- Path length restrictions have been removed across the codebase.
- Initial support for poll_oneoff() has been added on all
  platforms. The implementation is based on uv_poll_t's.
- A new uvwasi_size_t has been introduced across the WASI system
  call API. This provides consistent 32-bit size_t's.
- The cmake test targets are now only generated if uvwasi is the
  root project to avoid conflicts with targets from embedders.
- uv.h has been removed from the public headers.
- A serialization/deserialization API has been added to simplify
  the process of working with WASM memory. This also hides many
  WASI <--> WASM interfacing implementation details from
  embedders.
- A memory corruption bug on Windows related to path resolution
  has been fixed.
  • Loading branch information
cjihrig committed May 17, 2020
1 parent 84fcbec commit ae928dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/uvwasi.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ extern "C" {

#define UVWASI_VERSION_MAJOR 0
#define UVWASI_VERSION_MINOR 0
#define UVWASI_VERSION_PATCH 8
#define UVWASI_VERSION_PATCH 9
#define UVWASI_VERSION_HEX ((UVWASI_VERSION_MAJOR << 16) | \
(UVWASI_VERSION_MINOR << 8) | \
(UVWASI_VERSION_PATCH))
Expand Down

0 comments on commit ae928dd

Please sign in to comment.