Skip to content

Commit

Permalink
v0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
cjihrig committed Dec 15, 2019
1 parent 447676a commit e6aafb0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ int main(void) {
size_t env_buf_size;
size_t i;

assert(UVWASI_VERSION_HEX == 1);
assert(strcmp(UVWASI_VERSION_STRING, "0.0.2") == 0);
assert(UVWASI_VERSION_HEX == 3);
assert(strcmp(UVWASI_VERSION_STRING, "0.0.3") == 0);
assert(strcmp(UVWASI_VERSION_WASI, "snapshot_1") == 0);

uvw = &uvwasi;
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 2
#define UVWASI_VERSION_PATCH 3
#define UVWASI_VERSION_HEX ((UVWASI_VERSION_MAJOR << 16) | \
(UVWASI_VERSION_MINOR << 8) | \
(UVWASI_VERSION_PATCH))
Expand Down

0 comments on commit e6aafb0

Please sign in to comment.