Skip to content

Commit a7c31b0

Browse files
committedJan 20, 2020
Boost ver
1 parent 503a50c commit a7c31b0

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed
 

‎library.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Wasm3",
3-
"version": "0.4.3",
3+
"version": "0.4.4",
44
"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.",
55
"keywords": "esp32, esp8266, wasm, webassembly, interpreter, iot, edge computing",
66
"authors": [

‎library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=Wasm3
2-
version=0.4.3
2+
version=0.4.4
33
author=Volodymyr Shymanskyy <vshymanskyi@gmail.com>, Steven Massey <soundandform@gmail.com>
44
license=MIT
55
maintainer=Volodymyr Shymanskyy <vshymanskyi@gmail.com>

‎src/wasm3.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
// All rights reserved.
66
//
77

8-
#ifndef m3_h
9-
#define m3_h
8+
#ifndef wasm3_h
9+
#define wasm3_h
1010

1111
#define M3_VERSION_MAJOR 0
1212
#define M3_VERSION_MINOR 4
13-
#define M3_VERSION_REV 3
14-
#define M3_VERSION "0.4.3"
13+
#define M3_VERSION_REV 4
14+
#define M3_VERSION "0.4.4"
1515

1616
#include <stdlib.h>
1717
#include <stdint.h>
@@ -236,4 +236,4 @@ d_m3ErrorConst (trapStackOverflow, "[trap] stack overflow")
236236
}
237237
#endif
238238

239-
#endif // m3_h
239+
#endif // wasm3_h

0 commit comments

Comments
 (0)