Skip to content

Commit

Permalink
Boost ver
Browse files Browse the repository at this point in the history
  • Loading branch information
vshymanskyy committed Jan 20, 2020
1 parent 503a50c commit a7c31b0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Wasm3",
"version": "0.4.3",
"version": "0.4.4",
"description": "The fastest WebAssembly interpreter. It allows you to run WASM files directly on a wide range of devices, including microcontrollers, routers, smartphones and of course within browsers.",
"keywords": "esp32, esp8266, wasm, webassembly, interpreter, iot, edge computing",
"authors": [
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=Wasm3
version=0.4.3
version=0.4.4
author=Volodymyr Shymanskyy <vshymanskyi@gmail.com>, Steven Massey <soundandform@gmail.com>
license=MIT
maintainer=Volodymyr Shymanskyy <vshymanskyi@gmail.com>
Expand Down
10 changes: 5 additions & 5 deletions src/wasm3.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
// All rights reserved.
//

#ifndef m3_h
#define m3_h
#ifndef wasm3_h
#define wasm3_h

#define M3_VERSION_MAJOR 0
#define M3_VERSION_MINOR 4
#define M3_VERSION_REV 3
#define M3_VERSION "0.4.3"
#define M3_VERSION_REV 4
#define M3_VERSION "0.4.4"

#include <stdlib.h>
#include <stdint.h>
Expand Down Expand Up @@ -236,4 +236,4 @@ d_m3ErrorConst (trapStackOverflow, "[trap] stack overflow")
}
#endif

#endif // m3_h
#endif // wasm3_h

0 comments on commit a7c31b0

Please sign in to comment.