diff --git a/bytecode/bytecode.md b/bytecode/bytecode.md index a47f06848e..64454daf81 100644 --- a/bytecode/bytecode.md +++ b/bytecode/bytecode.md @@ -21,7 +21,7 @@ For a more highlevel description of runtime and bytecode, see [Runtime implement img_version_major = 2 img_version_minor = 15 - img_version_patch = 11 + img_version_patch = 12 img_version = $version magic0 = 0x53766544 // "DevS" magic1 = 0xf1296e0a diff --git a/compiler/src/bytecode.ts b/compiler/src/bytecode.ts index 514cd651e1..7c72d6bbc7 100644 --- a/compiler/src/bytecode.ts +++ b/compiler/src/bytecode.ts @@ -106,8 +106,8 @@ export const OP_TYPES = export enum BinFmt { IMG_VERSION_MAJOR = 2, IMG_VERSION_MINOR = 15, - IMG_VERSION_PATCH = 11, - IMG_VERSION = 0x20f000b, + IMG_VERSION_PATCH = 12, + IMG_VERSION = 0x20f000c, MAGIC0 = 0x53766544, // "DevS" MAGIC1 = 0xf1296e0a, NUM_IMG_SECTIONS = 10, diff --git a/runtime/devicescript/devs_bytecode.h b/runtime/devicescript/devs_bytecode.h index bf23b5aa00..8cf98be4f9 100644 --- a/runtime/devicescript/devs_bytecode.h +++ b/runtime/devicescript/devs_bytecode.h @@ -112,8 +112,8 @@ #define DEVS_IMG_VERSION_MAJOR 2 #define DEVS_IMG_VERSION_MINOR 15 -#define DEVS_IMG_VERSION_PATCH 11 -#define DEVS_IMG_VERSION 0x20f000b +#define DEVS_IMG_VERSION_PATCH 12 +#define DEVS_IMG_VERSION 0x20f000c #define DEVS_MAGIC0 0x53766544 // "DevS" #define DEVS_MAGIC1 0xf1296e0a #define DEVS_NUM_IMG_SECTIONS 10