Skip to content

Commit

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

- The uvwasi_preopen_t now uses const char* for the mapped_path
  and real_path fields. Previously, these were not const.
  (#130)
- uvwasi_path_filestat_get() now properly handles the
  UVWASI_LOOKUP_SYMLINK_FOLLOW flag.
  (#133)
- uvwasi_options_init() has been added to reduce the boilerplate
  code associated with initializing uvwasi_options_t's.
  (#141)
- The DEBUG() macro has been renamed to UVWASI_DEBUG() to
  reduce naming conflicts with other projects.
  (#143)
- A compilation error on NetBSD 8.2 has been fixed.
  (#146)
- The uvwasi_fd_filestat_set_times() and
  uvwasi_path_filestat_set_times() functions now have proper
  implementations.
  (#139)
  • Loading branch information
cjihrig committed Aug 4, 2020
1 parent 85d3d17 commit 93030ca
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 9
#define UVWASI_VERSION_PATCH 10
#define UVWASI_VERSION_HEX ((UVWASI_VERSION_MAJOR << 16) | \
(UVWASI_VERSION_MINOR << 8) | \
(UVWASI_VERSION_PATCH))
Expand Down

0 comments on commit 93030ca

Please sign in to comment.