Skip to content

Commit 3b51ec1

Browse files
committed
Bump version to v7.8.0
1 parent 43edb67 commit 3b51ec1

File tree

148 files changed

+164
-149
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

148 files changed

+164
-149
lines changed

dist-c/microvium.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/*
44
* Microvium Bytecode Interpreter
55
*
6-
* Version: 0.0.25
6+
* Version: 7.8.0
77
*
88
* This file contains the Microvium virtual machine C implementation.
99
*

dist-c/microvium.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/*
44
* Microvium Bytecode Interpreter
55
*
6-
* Version: 0.0.25
6+
* Version: 7.8.0
77
*
88
* This is the main header for the Microvium bytecode interpreter. Latest source
99
* available at https://microvium.com. Raise issues at
@@ -16,7 +16,7 @@
1616
#include <stdint.h>
1717

1818
#define MVM_ENGINE_MAJOR_VERSION 7 /* aka MVM_BYTECODE_VERSION */
19-
#define MVM_ENGINE_MINOR_VERSION 7 /* aka MVM_ENGINE_VERSION */
19+
#define MVM_ENGINE_MINOR_VERSION 8 /* aka MVM_ENGINE_VERSION */
2020

2121
typedef uint16_t mvm_Value;
2222
typedef uint16_t mvm_VMExportID;

doc/deployment.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,27 @@ If running prebuilds on linux on Windows, see here to install the build tools:
1717

1818
### 1. Bump version number
1919

20+
Note: make sure you test before bumping the version, because the version bump will modify the test output and require re-approval, and it's better not to have to sort through multiple changes in the test output.
21+
2022
First, bump the version number in [package.json](../package.json). I don't commit to git yet because the following steps could find errors that you want to clean up first.
2123

2224
Consider bumping the `MVM_ENGINE_MAJOR_VERSION` and `MVM_ENGINE_MINOR_VERSION` in `microvium.h`. I bump the major version if there is a breaking change to the bytecode, such that a new version of the engine is required to run it. I bump the minor version if there is a change to the engine but no change to the bytecode, so the new engine is compatible with the old bytecode.
2325

2426
I think going forward I will make the package version the same as the engine version, for simplicity, so you know what version of the compiler comes with what version of the engine and compiles what version of bytecode.
2527

28+
Build with the new version numbers:
29+
30+
```sh
31+
npm run build
32+
npm run test # This will fail, but you need to run it to inspect the failures
33+
```
34+
35+
Note: when you change the version numbers, it will change the binary output so you'll need to approve the output:
36+
37+
```sh
38+
npm run approve
39+
npm run test
40+
```
2641

2742
### 2. Build for Linux
2843

@@ -32,7 +47,7 @@ I'm deploying from a Windows machine, but I want to pre-build the linux binary f
3247
prebuildify --napi
3348
```
3449

35-
Note: this wipes the `build` directory and uses it for the Linux files. When you're done, you'll need to go back to Windows and run `node-gyp configure` to get the Windows files back.
50+
Note: this wipes the `build` directory and uses it for the Linux files. When you're done, you'll need to go back to Windows and run `node-gyp configure` to get the Windows files back. Or otherwise, continue with step `3`, since `npm run build-and-deploy` will rebuild the Windows files anyway.
3651

3752
### 3. Build for Windows and Deploy
3853

lib/snapshot-il.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { crc16ccitt } from 'crc';
66

77
export const ENGINE_MAJOR_VERSION = 7 /* aka MVM_BYTECODE_VERSION */;
88
export const HEADER_SIZE = 28;
9-
export const ENGINE_MINOR_VERSION = 7 /* aka MVM_ENGINE_VERSION */;
9+
export const ENGINE_MINOR_VERSION = 8 /* aka MVM_ENGINE_VERSION */;
1010

1111
/**
1212
* A snapshot represents the state of the machine captured at a specific moment

native-vm/microvium.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#include <stdint.h>
1717

1818
#define MVM_ENGINE_MAJOR_VERSION 7 /* aka MVM_BYTECODE_VERSION */
19-
#define MVM_ENGINE_MINOR_VERSION 7 /* aka MVM_ENGINE_VERSION */
19+
#define MVM_ENGINE_MINOR_VERSION 8 /* aka MVM_ENGINE_VERSION */
2020

2121
typedef uint16_t mvm_Value;
2222
typedef uint16_t mvm_VMExportID;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "microvium",
33
"private": false,
4-
"version": "0.0.25",
4+
"version": "7.8.0",
55
"description": "A compact, embeddable scripting engine for microcontrollers for executing small scripts written in a subset of JavaScript.",
66
"main": "dist/lib.js",
77
"bin": {

test/decode-snapshot/expected/snapshot.disassembly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Addr Size
55
0000 1c - # Header
66
0000 1 bytecodeVersion: 7
77
0001 1 headerSize: 28
8-
0002 1 requiredEngineVersion: 7
8+
0002 1 requiredEngineVersion: 8
99
0003 1 reserved: 0
1010
0004 2 bytecodeSize: 190
1111
0006 2 expectedCRC: 4b28

test/decode-snapshot/output/snapshot.disassembly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Addr Size
55
0000 1c - # Header
66
0000 1 bytecodeVersion: 7
77
0001 1 headerSize: 28
8-
0002 1 requiredEngineVersion: 7
8+
0002 1 requiredEngineVersion: 8
99
0003 1 reserved: 0
1010
0004 2 bytecodeSize: 190
1111
0006 2 expectedCRC: 4b28

test/end-to-end/artifacts/0.empty-export/1.post-load.mvm-bc.disassembly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Addr Size
55
0000 1c - # Header
66
0000 1 bytecodeVersion: 7
77
0001 1 headerSize: 28
8-
0002 1 requiredEngineVersion: 7
8+
0002 1 requiredEngineVersion: 8
99
0003 1 reserved: 0
1010
0004 2 bytecodeSize: 88
1111
0006 2 expectedCRC: a3cd

test/end-to-end/artifacts/0.empty-export/3.native-post-gc.mvm-bc.disassembly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Addr Size
55
0000 1c - # Header
66
0000 1 bytecodeVersion: 7
77
0001 1 headerSize: 28
8-
0002 1 requiredEngineVersion: 7
8+
0002 1 requiredEngineVersion: 8
99
0003 1 reserved: 0
1010
0004 2 bytecodeSize: 88
1111
0006 2 expectedCRC: a3cd

test/end-to-end/artifacts/0.empty-export/3.native-pre-run.mvm-bc.disassembly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Addr Size
55
0000 1c - # Header
66
0000 1 bytecodeVersion: 7
77
0001 1 headerSize: 28
8-
0002 1 requiredEngineVersion: 7
8+
0002 1 requiredEngineVersion: 8
99
0003 1 reserved: 0
1010
0004 2 bytecodeSize: 88
1111
0006 2 expectedCRC: a3cd

test/end-to-end/artifacts/0.empty-export/4.native-post-run.mvm-bc.disassembly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Addr Size
55
0000 1c - # Header
66
0000 1 bytecodeVersion: 7
77
0001 1 headerSize: 28
8-
0002 1 requiredEngineVersion: 7
8+
0002 1 requiredEngineVersion: 8
99
0003 1 reserved: 0
1010
0004 2 bytecodeSize: 88
1111
0006 2 expectedCRC: a3cd

test/end-to-end/artifacts/0.empty-export/5.native-post-gc.mvm-bc.disassembly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Addr Size
55
0000 1c - # Header
66
0000 1 bytecodeVersion: 7
77
0001 1 headerSize: 28
8-
0002 1 requiredEngineVersion: 7
8+
0002 1 requiredEngineVersion: 8
99
0003 1 reserved: 0
1010
0004 2 bytecodeSize: 88
1111
0006 2 expectedCRC: a3cd

test/end-to-end/artifacts/1.hello-world/1.post-load.mvm-bc.disassembly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Addr Size
55
0000 1c - # Header
66
0000 1 bytecodeVersion: 7
77
0001 1 headerSize: 28
8-
0002 1 requiredEngineVersion: 7
8+
0002 1 requiredEngineVersion: 8
99
0003 1 reserved: 0
1010
0004 2 bytecodeSize: 124
1111
0006 2 expectedCRC: 1f2c

test/end-to-end/artifacts/1.hello-world/3.native-post-gc.mvm-bc.disassembly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Addr Size
55
0000 1c - # Header
66
0000 1 bytecodeVersion: 7
77
0001 1 headerSize: 28
8-
0002 1 requiredEngineVersion: 7
8+
0002 1 requiredEngineVersion: 8
99
0003 1 reserved: 0
1010
0004 2 bytecodeSize: 124
1111
0006 2 expectedCRC: 1f2c

test/end-to-end/artifacts/1.hello-world/3.native-pre-run.mvm-bc.disassembly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Addr Size
55
0000 1c - # Header
66
0000 1 bytecodeVersion: 7
77
0001 1 headerSize: 28
8-
0002 1 requiredEngineVersion: 7
8+
0002 1 requiredEngineVersion: 8
99
0003 1 reserved: 0
1010
0004 2 bytecodeSize: 124
1111
0006 2 expectedCRC: 1f2c

test/end-to-end/artifacts/1.hello-world/4.native-post-run.mvm-bc.disassembly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Addr Size
55
0000 1c - # Header
66
0000 1 bytecodeVersion: 7
77
0001 1 headerSize: 28
8-
0002 1 requiredEngineVersion: 7
8+
0002 1 requiredEngineVersion: 8
99
0003 1 reserved: 0
1010
0004 2 bytecodeSize: 124
1111
0006 2 expectedCRC: 1f2c

test/end-to-end/artifacts/1.hello-world/5.native-post-gc.mvm-bc.disassembly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Addr Size
55
0000 1c - # Header
66
0000 1 bytecodeVersion: 7
77
0001 1 headerSize: 28
8-
0002 1 requiredEngineVersion: 7
8+
0002 1 requiredEngineVersion: 8
99
0003 1 reserved: 0
1010
0004 2 bytecodeSize: 124
1111
0006 2 expectedCRC: 1f2c

test/end-to-end/artifacts/arrays/1.post-load.mvm-bc.disassembly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Addr Size
55
0000 1c - # Header
66
0000 1 bytecodeVersion: 7
77
0001 1 headerSize: 28
8-
0002 1 requiredEngineVersion: 7
8+
0002 1 requiredEngineVersion: 8
99
0003 1 reserved: 0
1010
0004 2 bytecodeSize: 1186
1111
0006 2 expectedCRC: 4231

test/end-to-end/artifacts/arrays/3.native-post-gc.mvm-bc.disassembly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Addr Size
55
0000 1c - # Header
66
0000 1 bytecodeVersion: 7
77
0001 1 headerSize: 28
8-
0002 1 requiredEngineVersion: 7
8+
0002 1 requiredEngineVersion: 8
99
0003 1 reserved: 0
1010
0004 2 bytecodeSize: 1186
1111
0006 2 expectedCRC: fa8c

test/end-to-end/artifacts/arrays/3.native-pre-run.mvm-bc.disassembly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Addr Size
55
0000 1c - # Header
66
0000 1 bytecodeVersion: 7
77
0001 1 headerSize: 28
8-
0002 1 requiredEngineVersion: 7
8+
0002 1 requiredEngineVersion: 8
99
0003 1 reserved: 0
1010
0004 2 bytecodeSize: 1186
1111
0006 2 expectedCRC: 4231

test/end-to-end/artifacts/arrays/4.native-post-run.mvm-bc.disassembly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Addr Size
55
0000 1c - # Header
66
0000 1 bytecodeVersion: 7
77
0001 1 headerSize: 28
8-
0002 1 requiredEngineVersion: 7
8+
0002 1 requiredEngineVersion: 8
99
0003 1 reserved: 0
1010
0004 2 bytecodeSize: 1442
1111
0006 2 expectedCRC: 25fc

test/end-to-end/artifacts/arrays/5.native-post-gc.mvm-bc.disassembly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Addr Size
55
0000 1c - # Header
66
0000 1 bytecodeVersion: 7
77
0001 1 headerSize: 28
8-
0002 1 requiredEngineVersion: 7
8+
0002 1 requiredEngineVersion: 8
99
0003 1 reserved: 0
1010
0004 2 bytecodeSize: 1186
1111
0006 2 expectedCRC: fa8c

test/end-to-end/artifacts/bitwise-operations/1.post-load.mvm-bc.disassembly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Addr Size
55
0000 1c - # Header
66
0000 1 bytecodeVersion: 7
77
0001 1 headerSize: 28
8-
0002 1 requiredEngineVersion: 7
8+
0002 1 requiredEngineVersion: 8
99
0003 1 reserved: 0
1010
0004 2 bytecodeSize: 488
1111
0006 2 expectedCRC: b291

test/end-to-end/artifacts/bitwise-operations/3.native-post-gc.mvm-bc.disassembly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Addr Size
55
0000 1c - # Header
66
0000 1 bytecodeVersion: 7
77
0001 1 headerSize: 28
8-
0002 1 requiredEngineVersion: 7
8+
0002 1 requiredEngineVersion: 8
99
0003 1 reserved: 0
1010
0004 2 bytecodeSize: 488
1111
0006 2 expectedCRC: b291

test/end-to-end/artifacts/bitwise-operations/3.native-pre-run.mvm-bc.disassembly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Addr Size
55
0000 1c - # Header
66
0000 1 bytecodeVersion: 7
77
0001 1 headerSize: 28
8-
0002 1 requiredEngineVersion: 7
8+
0002 1 requiredEngineVersion: 8
99
0003 1 reserved: 0
1010
0004 2 bytecodeSize: 488
1111
0006 2 expectedCRC: b291

test/end-to-end/artifacts/bitwise-operations/4.native-post-run.mvm-bc.disassembly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Addr Size
55
0000 1c - # Header
66
0000 1 bytecodeVersion: 7
77
0001 1 headerSize: 28
8-
0002 1 requiredEngineVersion: 7
8+
0002 1 requiredEngineVersion: 8
99
0003 1 reserved: 0
1010
0004 2 bytecodeSize: 504
1111
0006 2 expectedCRC: c131

test/end-to-end/artifacts/bitwise-operations/5.native-post-gc.mvm-bc.disassembly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Addr Size
55
0000 1c - # Header
66
0000 1 bytecodeVersion: 7
77
0001 1 headerSize: 28
8-
0002 1 requiredEngineVersion: 7
8+
0002 1 requiredEngineVersion: 8
99
0003 1 reserved: 0
1010
0004 2 bytecodeSize: 504
1111
0006 2 expectedCRC: ba76

test/end-to-end/artifacts/classes/1.post-load.mvm-bc.disassembly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Addr Size
55
0000 1c - # Header
66
0000 1 bytecodeVersion: 7
77
0001 1 headerSize: 28
8-
0002 1 requiredEngineVersion: 7
8+
0002 1 requiredEngineVersion: 8
99
0003 1 reserved: 0
1010
0004 2 bytecodeSize: 3240
1111
0006 2 expectedCRC: 184f

test/end-to-end/artifacts/classes/3.native-post-gc.mvm-bc.disassembly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Addr Size
55
0000 1c - # Header
66
0000 1 bytecodeVersion: 7
77
0001 1 headerSize: 28
8-
0002 1 requiredEngineVersion: 7
8+
0002 1 requiredEngineVersion: 8
99
0003 1 reserved: 0
1010
0004 2 bytecodeSize: 3240
1111
0006 2 expectedCRC: 43ca

test/end-to-end/artifacts/classes/3.native-pre-run.mvm-bc.disassembly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Addr Size
55
0000 1c - # Header
66
0000 1 bytecodeVersion: 7
77
0001 1 headerSize: 28
8-
0002 1 requiredEngineVersion: 7
8+
0002 1 requiredEngineVersion: 8
99
0003 1 reserved: 0
1010
0004 2 bytecodeSize: 3240
1111
0006 2 expectedCRC: 184f

test/end-to-end/artifacts/classes/4.native-post-run.mvm-bc.disassembly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Addr Size
55
0000 1c - # Header
66
0000 1 bytecodeVersion: 7
77
0001 1 headerSize: 28
8-
0002 1 requiredEngineVersion: 7
8+
0002 1 requiredEngineVersion: 8
99
0003 1 reserved: 0
1010
0004 2 bytecodeSize: 4384
1111
0006 2 expectedCRC: 77b2

test/end-to-end/artifacts/classes/5.native-post-gc.mvm-bc.disassembly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Addr Size
55
0000 1c - # Header
66
0000 1 bytecodeVersion: 7
77
0001 1 headerSize: 28
8-
0002 1 requiredEngineVersion: 7
8+
0002 1 requiredEngineVersion: 8
99
0003 1 reserved: 0
1010
0004 2 bytecodeSize: 3266
1111
0006 2 expectedCRC: 095b

test/end-to-end/artifacts/closure-embedding/1.post-load.mvm-bc.disassembly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Addr Size
55
0000 1c - # Header
66
0000 1 bytecodeVersion: 7
77
0001 1 headerSize: 28
8-
0002 1 requiredEngineVersion: 7
8+
0002 1 requiredEngineVersion: 8
99
0003 1 reserved: 0
1010
0004 2 bytecodeSize: 672
1111
0006 2 expectedCRC: c636

test/end-to-end/artifacts/closure-embedding/3.native-post-gc.mvm-bc.disassembly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Addr Size
55
0000 1c - # Header
66
0000 1 bytecodeVersion: 7
77
0001 1 headerSize: 28
8-
0002 1 requiredEngineVersion: 7
8+
0002 1 requiredEngineVersion: 8
99
0003 1 reserved: 0
1010
0004 2 bytecodeSize: 672
1111
0006 2 expectedCRC: c636

test/end-to-end/artifacts/closure-embedding/3.native-pre-run.mvm-bc.disassembly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Addr Size
55
0000 1c - # Header
66
0000 1 bytecodeVersion: 7
77
0001 1 headerSize: 28
8-
0002 1 requiredEngineVersion: 7
8+
0002 1 requiredEngineVersion: 8
99
0003 1 reserved: 0
1010
0004 2 bytecodeSize: 672
1111
0006 2 expectedCRC: c636

test/end-to-end/artifacts/closure-embedding/4.native-post-run.mvm-bc.disassembly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Addr Size
55
0000 1c - # Header
66
0000 1 bytecodeVersion: 7
77
0001 1 headerSize: 28
8-
0002 1 requiredEngineVersion: 7
8+
0002 1 requiredEngineVersion: 8
99
0003 1 reserved: 0
1010
0004 2 bytecodeSize: 990
1111
0006 2 expectedCRC: 93c0

test/end-to-end/artifacts/closure-embedding/5.native-post-gc.mvm-bc.disassembly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Addr Size
55
0000 1c - # Header
66
0000 1 bytecodeVersion: 7
77
0001 1 headerSize: 28
8-
0002 1 requiredEngineVersion: 7
8+
0002 1 requiredEngineVersion: 8
99
0003 1 reserved: 0
1010
0004 2 bytecodeSize: 672
1111
0006 2 expectedCRC: c636

test/end-to-end/artifacts/closures-across-snapshot/1.post-load.mvm-bc.disassembly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Addr Size
55
0000 1c - # Header
66
0000 1 bytecodeVersion: 7
77
0001 1 headerSize: 28
8-
0002 1 requiredEngineVersion: 7
8+
0002 1 requiredEngineVersion: 8
99
0003 1 reserved: 0
1010
0004 2 bytecodeSize: 114
1111
0006 2 expectedCRC: 18b2

test/end-to-end/artifacts/closures-across-snapshot/3.native-post-gc.mvm-bc.disassembly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Addr Size
55
0000 1c - # Header
66
0000 1 bytecodeVersion: 7
77
0001 1 headerSize: 28
8-
0002 1 requiredEngineVersion: 7
8+
0002 1 requiredEngineVersion: 8
99
0003 1 reserved: 0
1010
0004 2 bytecodeSize: 114
1111
0006 2 expectedCRC: 8d49

0 commit comments

Comments
 (0)